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