@shinyongjun/react-datepicker
Version:
DatePicker component in React App.
12 lines (11 loc) • 484 B
TypeScript
type TViewType = 'century' | 'decade' | 'year' | 'month';
interface IProps {
viewDate: string;
viewType: TViewType;
labelFormat: string;
showsMultipleCalendar: boolean;
setViewType: (value: TViewType) => void;
setViewDate: (value: string) => void;
}
declare function ControllerContainer({ viewDate, viewType, labelFormat, showsMultipleCalendar, setViewType, setViewDate, }: IProps): import("react/jsx-runtime").JSX.Element;
export default ControllerContainer;