clearing a form reactjs code example
Example: 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>
// React.js
// Set button type to "reset"
<Form>
<Input placeholder="Input"/>
// ...
// Set type="reset"
<Button type="reset">Submit</Button>
</Form>