import React, { FC } from "react"; type Props = { id: string; value: string; dispatch: React.Dispatch>; }; export const ContactFormTextArea: FC = ({ id, value, dispatch }) => { const handleChange: React.ChangeEventHandler = (e) => { e.preventDefault(); dispatch(e.target.value); }; return (