I have a simple multiline text input:
const [text, setText] = React.useState(\'\') const submit = () => { // submit the form setText(\'\') } <