UNPKG

nepali-date-selector

Version:
11 lines (9 loc) 340 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;