From bd28971de0df2a885ee2df5f5ac981cfca1939fe Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 18 Dec 2024 16:37:04 +0100 Subject: [PATCH] fixing calendar issues --- src/component/calendar/EventCalendar.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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)