UNPKG

@jk-core/components

Version:
12 lines (11 loc) 420 B
import { CalendarView } from '../../type'; interface Props { selectedDate?: Date; viewDate: Date; handleMonthClick: (month: number) => void; tileContent?: (date: Date, view: CalendarView) => React.ReactNode; max: Date; min: Date; } export default function MonthTile({ selectedDate, viewDate, handleMonthClick, tileContent, max, min, }: Props): import("react/jsx-runtime").JSX.Element; export {};