UNPKG

datepicker-nepali-reactjs

Version:
9 lines (8 loc) 285 B
import { FunctionComponent } from "react"; import { ParsedDate } from "../../../types/types"; interface MonthPickerProps { date: ParsedDate; onSelect: (year: number) => void; } declare const MonthPicker: FunctionComponent<MonthPickerProps>; export default MonthPicker;