react clear input field after submit code example
Example 1: how to empty form after submit react
e.target.reset();
Example 2: react clear form input field
// React.js
// Set button type to "reset"
<Form>
<Input placeholder="Input"/>
// ...
// Set type="reset"
<Button type="reset">Submit</Button>
</Form>