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