I need a calendar in my React app and I want to use the calendar from Metronic html admin dashboard. How can I do it?
Ensure that your React app is configured to use the appropriate CSS and JavaScript files from the Metronic theme. This might involve MapQuest Route Planner adding them to your index.html file or using a CSS loader in your build process.
First, you need to install the necessary npm packages for React and calendar-related libraries. wordle web
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" }
]}
/>