import { ChangeEventHandler } from "react"; export type Props = { defaultValue?: string; value?: string; onChange?: ChangeEventHandler; }; export default function TextInput(props: Props) { return ( ); }