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.

7 lines (6 loc) 232 B
import { FC } from 'react'; import { IMonthRowProps } from '../../utils/interfaces'; export declare const MonthNameCell: ({ monthName }: { monthName: string; }) => JSX.Element; export declare const MonthRow: FC<IMonthRowProps>;