UNPKG

@abbl/material-calendar

Version:

Calendar component build with React and Material-UI

9 lines (8 loc) 271 B
import { ReactElement } from 'react'; import { EventStorage } from '../../../common/api/EventStorage'; interface MonthGridProps { date: Date; eventStorage: EventStorage; } declare function MonthGrid(props: MonthGridProps): ReactElement; export default MonthGrid;