React Calendar Usage Reference Document Contact Location
Hi,
Thank you for reaching out to us.
In our React version, we currently don't utilize the React-Fullcalendar plugin.
You can install React-Fullcalendar dependencies using the following command:
npm install --save \
@fullcalendar/core \
@fullcalendar/react \
@fullcalendar/daygrid
<FullCalendar
plugins={[ dayGridPlugin ]}
initialView="dayGridMonth"
weekends={false}
events={[
{ title: "event 1", date: "2019-04-01" },
{ title: "event 2", date: "2019-04-02" }
]}
/>