UNPKG

react-nepali-datepicker-bs

Version:

Nepali Datepicker (Bikram Sambat) as a ReactJS component

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