import React, { FC } from "react"; interface calendarInputProps { onChange: Function; name: string; value?: string | null; min?: string; max?: string; [index: string]: any; } const CalendarInput: FC = ({ className, ...props }) => { return ( ); }; export default CalendarInput;