UNPKG

react-nepali-datepicker-bs

Version:

Nepali Datepicker (Bikram Sambat) as a ReactJS component

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