UNPKG

nepali-date-selector

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