mobile-react-infinite-calendar
Version:
A mobile-optimized infinite scroll calendar component for React
15 lines (14 loc) • 491 B
TypeScript
import type { MonthData } from '../hooks/useCalendarComposer';
import type { CalendarEvent, Holiday, ClassNameOptions } from '../types';
interface MonthRowProps {
monthData: MonthData;
monthIndex: number;
activeMonth: Date;
classNames?: ClassNameOptions;
onDayClick?: (date: Date, dayInfo?: {
events: CalendarEvent[];
holidays: Holiday[];
}) => void;
}
declare const MonthRow: import("react").NamedExoticComponent<MonthRowProps>;
export { MonthRow };