UNPKG

nepali-date-selector

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