UNPKG

datepicker-nepali-reactjs

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