UNPKG

react-nepali-datepicker-bs

Version:

Nepali Datepicker (Bikram Sambat) as a ReactJS component

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