nepali-date-selector
Version:
Nepali Date Selector
14 lines (12 loc) • 439 B
TypeScript
import { FunctionComponent } from 'react';
import { ParsedDate } from '../../Types';
interface CalenderControllerProps {
onNextMonth: () => void;
onPreviousMonth: () => void;
onToday: () => void;
onYearSelect: (year: number) => void;
onMonthSelect: (year: number) => void;
calenderDate: ParsedDate;
}
declare const CalenderController: FunctionComponent<CalenderControllerProps>;
export default CalenderController;