UNPKG

react-full-year-scheduler-single-file

Version:

React Year Scheduler is a customizable and easy-to-use React component that allows you to display a year calendar with events, and enable users to select and interact with them.

8 lines (7 loc) 227 B
interface IWeekDayCellProps { index: number; dayName: string; englishDayName: string; } declare const WeekDayCell: ({ index, dayName, englishDayName }: IWeekDayCellProps) => JSX.Element; export default WeekDayCell;