UNPKG

nepali-date-selector

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