datepicker-nepali-reactjs
Version:
React Nepali Date Picker
10 lines (9 loc) • 339 B
TypeScript
import { FunctionComponent } from "react";
import { ParsedDate, SplittedDate } from "../../../types/types";
interface DayPickerProps {
selectedDate: ParsedDate;
calenderDate: ParsedDate;
onDaySelect: (date: SplittedDate) => void;
}
declare const DayPicker: FunctionComponent<DayPickerProps>;
export default DayPicker;