src/components/WeeklyCalendar/week/event.js
Function Event
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function Event(props) {
const { onEventClick, locale, ...event } = props;
const { title, startDate, endDate, color, backgroundColor } = event;
const eventId = useUniqueIdentifier('calendar-event');
const duration = useEventDuration(startDate, endDate);