I am trying to add tooltip to fullcalendar in my nextjs project
<FullCalendar
plugins={[dayGridPlugin, interactionPlugin, timeGridPlugin,listPlugin]}
headerToolbar={{
left: 'prev,next today',
center: 'title',
right: 'resourceTimelineWeek, dayGridMonth,timeGridWeek,listWeek',
}}
events={allEvents as unknown as EventInput[]}
nowIndicator={true}
editable={true}
droppable={true}
selectable={true}
selectMirror={true}
dateClick={handleDateClick}
select={handleSelect} // Added select event handler
drop={(data) => addEvent(data)}
eventClick={(data) => handleDeleteModal(data)}
eventMouseLeave={handleEventMouseLeave}
eventMouseEnter={handleEventMouseEnter}
/>
New contributor
lola lolaa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.