react-admin-dashboard
react-admin-dashboard copied to clipboard
formatDate was not found in @fullcalendar/react
export 'formatDate' (imported as 'formatDate') was not found in '@fullcalendar/react' (possible exports: default)
you need to import "formatDate" from core.
just adjust this import line:
import FullCalendar, { formatDate } from "@fullcalendar/react";
to
import FullCalendar from "@fullcalendar/react";
import { formatDate } from "@fullcalendar/core";
this will fix the issue