UNPKG

nepali-date-selector

Version:
11 lines (9 loc) 353 B
import { FunctionComponent } from 'react'; import { ParsedDate, SplittedDate } from '../../../Types'; interface DaySelectorBodyProps { selectedDate: ParsedDate | null; calenderDate: ParsedDate; onSelect: (date: SplittedDate) => void; } declare const DaySelectorBody: FunctionComponent<DaySelectorBodyProps>; export default DaySelectorBody;