Skip to content

Commit a1aedf8

Browse files
authored
[EC-165] test: 테스트 배포 (#156)
1 parent 4496511 commit a1aedf8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

client/src/pages/roomReservation/RoomReservation.jsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import 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';
55
import { reservationApi } from '../../api/reservationApi';
66
import { useSelector } from 'react-redux';
7+
import packageJson from '/package.json';
78

89
const 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

0 commit comments

Comments
 (0)