@shinyongjun/react-datepicker
Version:
DatePicker component in React App.
15 lines (14 loc) • 510 B
TypeScript
import { ITimeValue } from '../../types/props';
interface Iprops {
value: Date | null;
valueFormat: string;
monthPage: number;
weekdayLabels: string[];
onChange?: (newValue: Date | null) => void;
timeValue: ITimeValue;
holidays: string[];
minDate?: Date;
maxDate?: Date;
}
export default function DatePickerMonth({ value, onChange, valueFormat, monthPage, weekdayLabels, timeValue, holidays, minDate, maxDate, }: Iprops): import("react/jsx-runtime").JSX.Element;
export {};