UNPKG

react-simple-calender

Version:
9 lines (8 loc) 279 B
import { Dispatch, SetStateAction } from "react"; type InputProps = { value: string; setDate: Dispatch<SetStateAction<string>>; openCalender: () => void; }; export default function Input(props: InputProps): import("react/jsx-runtime").JSX.Element; export {};