UNPKG

nepali-datepicker-reactjs

Version:
10 lines (9 loc) 353 B
import { FunctionComponent } from "react"; import { ParsedDate, SplittedDate } from "../../../Types"; interface DayPickerBodyProps { selectedDate: ParsedDate | null; calenderDate: ParsedDate; onSelect: (date: SplittedDate) => void; } declare const DayPickerBody: FunctionComponent<DayPickerBodyProps>; export default DayPickerBody;