I'm using react with javascript along with a library called Unform (( https://github.com/Rocketseat/unform )
I have a form with a single field and I wanted to clear this field after clicking "send".
<Form onSubmit={handleSubmit} >
<Input
id="input"
name="value"
placeholder="Where are we going?"
/><br />
<button
type="submit"
class="btn-send-direction"
>Send Direction</button>
</Form>
I'm not getting anything that works, can someone who has already done it help me? Thanks!