UNPKG

@abbl/material-calendar

Version:

Calendar component build with React and Material-UI

9 lines (8 loc) 362 B
/// <reference types="react" /> import CalendarEvent from '../../../common/api/CalendarEvent'; import EventPopoverContent from '../../../common/api/EventPopoverContent'; export interface ScheduleViewEventProps { event: CalendarEvent; popover?: EventPopoverContent; } export default function ScheduleViewEvent(props: ScheduleViewEventProps): JSX.Element;