Drag event

how to still show the old location of the event before being dragged to another position in fullcalendar?
Here is my code


 <FullCalendar
 eventDragStart={(info) => {
            
            setIsMoving(true);
            setEventHover({ event: undefined });
          }}
eventDrop={handleEventDrop}
          eventDragStop={handleDragLeave}
/FullCalendar> 
Was this page helpful?