InputType: {
    onChange: (
        { target, }: { target: HTMLInputElement | HTMLTextAreaElement },
    ) => void;
    setValue: React.Dispatch<React.SetStateAction<string>>;
    value: string;
}

Type declaration

  • onChange: ({ target, }: { target: HTMLInputElement | HTMLTextAreaElement }) => void
  • setValue: React.Dispatch<React.SetStateAction<string>>
  • value: string