javascripthtmlcalendarfullcalendarfullcalendar-5

Customizing events in React Big Calendar


How to add menu button to calendar events??
enter image description here


Solution

  • As I found out, it can be done very easily. The calendar has a corresponding prop for displaying each event.:

    <Calendar 
      components={{ 
        event: (event) => <EventComponent {...event} /> 
      }} 
    />