UNPKG

@aldabil/react-scheduler

Version:

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

16 lines (15 loc) 511 B
import { JSX } from 'react'; import { CellRenderedProps, DayHours } from '../types'; export type WeekDays = 0 | 1 | 2 | 3 | 4 | 5 | 6; export interface MonthProps { weekDays: WeekDays[]; weekStartOn: WeekDays; startHour: DayHours; endHour: DayHours; cellRenderer?(props: CellRenderedProps): JSX.Element; headRenderer?(day: Date): JSX.Element; navigation?: boolean; disableGoToDay?: boolean; } declare const Month: () => import("react/jsx-runtime").JSX.Element; export { Month };