diff --git a/src/component/calendar/EventCalendar.jsx b/src/component/calendar/EventCalendar.jsx index 3c6fc91..cd1746d 100644 --- a/src/component/calendar/EventCalendar.jsx +++ b/src/component/calendar/EventCalendar.jsx @@ -12,12 +12,12 @@ const DnDCalendar = withDragAndDrop(Calendar) export default function EventCalendar({draggedEvent, setDraggedEvent}) { const myEventsList = [ - { - title: 'title', - start: new Date('2024-12-18'), - end: new Date('2024-12-18'), - isAllDay: false, - } + // { + // title: 'title', + // start: new Date('2024-12-18'), + // end: new Date('2024-12-18'), + // isAllDay: false, + // } ] const [myEvents, setMyEvents] = useState(myEventsList)