react-nepali-datepicker-bs
Version:
Nepali Datepicker (Bikram Sambat) as a ReactJS component
10 lines (9 loc) • 340 B
TypeScript
import { FunctionComponent } from "react";
import { ParsedDate, SplittedDate } from "../../../Types";
interface DayPickerProps {
selectedDate: ParsedDate | null;
calenderDate: ParsedDate;
onDaySelect: (date: SplittedDate) => void;
}
declare const DayPicker: FunctionComponent<DayPickerProps>;
export default DayPicker;