function TextArea({ label, id, value, updateValue }) { const handleChange = (e) => { updateValue(e.target.value); }; return ( <> {label ? ( ) : ( "" )}