Post

[ReactJS] How to inject events in Full Calendar?

1. Create an array with object

Create an array with object having title, start, and end.

1
2
3
4
5
6
7
const events = [
  {
    title: "Event 1",
    start: "2023-04-10T12:00:00",
    end: "2023-04-10T12:00:00",
  },
];

2. Render the Full Calendar with the created array

1
<FullCalendar plugins={[dayGridPlugin]} events={events} />
This post is licensed under CC BY 4.0 by the author.