fixing calendar issues

This commit is contained in:
victorAnumudu
2024-12-18 16:37:04 +01:00
parent 3c046c90d7
commit bd28971de0
+6 -6
View File
@@ -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)