UNPKG

@aldabil/react-scheduler

Version:

React scheduler component based on Material-UI & date-fns

14 lines (13 loc) 436 B
import { JSX } from 'react'; import { CellRenderedProps, DayHours } from '../types'; export interface DayProps { startHour: DayHours; endHour: DayHours; step: number; cellRenderer?(props: CellRenderedProps): JSX.Element; headRenderer?(day: Date): JSX.Element; hourRenderer?(hour: string): JSX.Element; navigation?: boolean; } declare const Day: () => import("react/jsx-runtime").JSX.Element; export { Day };