@abbl/material-calendar
Version:
Calendar component build with React and Material-UI
12 lines (11 loc) • 446 B
TypeScript
/// <reference types="react" />
import CalendarEvent from '../../../common/api/CalendarEvent';
import EventPopoverContent from '../../../common/api/EventPopoverContent';
export interface ScheduleGridElementProps {
date: Date;
day: number | string;
calendarEvents: CalendarEvent[];
popover?: EventPopoverContent;
hideLabel?: boolean;
}
export default function ScheduleGridElement(props: ScheduleGridElementProps): JSX.Element;