nepali-date-selector
Version:
Nepali Date Selector
11 lines (9 loc) • 340 B
TypeScript
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;