File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
client/src/pages/roomReservation Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11import React , { useState , useEffect } from 'react' ;
2- import FullCalendar from '@fullcalendar/react' ;
3- import resourceTimeGridPlugin from '@fullcalendar/resource-timegrid' ;
4- import interactionPlugin from '@fullcalendar/interaction' ;
2+ // import FullCalendar from '@fullcalendar/react';
3+ // import resourceTimeGridPlugin from '@fullcalendar/resource-timegrid';
4+ // import interactionPlugin from '@fullcalendar/interaction';
55import { reservationApi } from '../../api/reservationApi' ;
66import { useSelector } from 'react-redux' ;
7+ import packageJson from '/package.json' ;
78
89const RoomReservation = ( ) => {
910 const [ resources , setResources ] = useState ( [ ] ) ;
@@ -14,6 +15,8 @@ const RoomReservation = () => {
1415 const courseId = useSelector ( ( state ) => state . auth . user . courseId ) ;
1516 console . log ( campusId ) ;
1617
18+ console . log ( packageJson ) ;
19+
1720 // useEffect(() => {
1821 // if (!campusId) return;
1922
You can’t perform that action at this time.
0 commit comments