import React from "react"; interface InputProps { value: string | undefined | null; onChange: (value: string) => void; placeholder?: string; className?: string; } export const Input = (props: InputProps) => { return ( props.onChange(e.target.value)} /> ); };