UNPKG

nepali-date-selector

Version:
10 lines (8 loc) 273 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;