UNPKG

datepicker-nepali-reactjs

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