UNPKG

nepali-date-selector

Version:
10 lines (8 loc) 278 B
import { FunctionComponent } from 'react'; import { ParsedDate } from '../../Types'; interface MonthSelectorProps { date: ParsedDate; onSelect: (month: number) => void; } declare const MonthSelector: FunctionComponent<MonthSelectorProps>; export default MonthSelector;