UNPKG

datepicker-nepali-reactjs

Version:
10 lines (9 loc) 303 B
import { FunctionComponent } from "react"; import { OptionType } from "../../types/types"; interface DropDownProps { options: OptionType[]; value: number; onSelect: (selected: OptionType) => void; } declare const DropDown: FunctionComponent<DropDownProps>; export default DropDown;