UNPKG

react-nepali-datepicker-bs

Version:

Nepali Datepicker (Bikram Sambat) as a ReactJS component

13 lines (12 loc) 450 B
import { FunctionComponent } from "react"; import { ParsedDate } from "../../Types"; interface CalenderControllerProps { onNextMonth: () => void; onPreviousMonth: () => void; onToday: () => void; onYearSelect: (year: number) => void; onMonthSelect: (year: number) => void; calenderDate: ParsedDate; } declare const CalenderController: FunctionComponent<CalenderControllerProps>; export default CalenderController;