react-admin-dashboard icon indicating copy to clipboard operation
react-admin-dashboard copied to clipboard

formatDate was not found in @fullcalendar/react

Open wlnston1 opened this issue 2 years ago • 1 comments

export 'formatDate' (imported as 'formatDate') was not found in '@fullcalendar/react' (possible exports: default)

wlnston1 avatar Jan 02 '23 18:01 wlnston1

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

carter89 avatar Jan 20 '23 15:01 carter89