@abbl/material-calendar
Version:
Calendar component build with React and Material-UI
11 lines (10 loc) • 386 B
TypeScript
import { ReactElement } from 'react';
import CalendarEvent from '../../../common/api/CalendarEvent';
interface MonthGridElementProps {
date: Date;
displayDayOfWeekIndication: boolean;
indicatePreviousMonth: boolean;
dayEvents: CalendarEvent[] | undefined;
}
declare function MonthGridElement(props: MonthGridElementProps): ReactElement;
export default MonthGridElement;