formatDate was not found in @fullcalendar/react
wlnston1 opened this issue · 1 comments
wlnston1 commented
export 'formatDate' (imported as 'formatDate') was not found in '@fullcalendar/react' (possible exports: default)
carter89 commented
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