UNPKG

@abbl/material-calendar

Version:

Calendar component build with React and Material-UI

9 lines (8 loc) 277 B
import { ReactElement } from 'react'; import { EventStorage } from '../../api/EventStorage'; export interface DateEventsProps { date: Date; eventStorage: EventStorage; onClose: () => void; } export default function DateEvents(props: DateEventsProps): ReactElement;