how to clear form fields in react after submit

Solutions on MaxInterview for how to clear form fields in react after submit by the best coders in the world

showing results for - "how to clear form fields in react after submit"
Daniella
03 Jan 2020
1<Form>
2	<Input placeholder="Input"/>
3    // ...
4	// Set type="reset"
5	<Button type="reset">Submit</Button>
6</Form>
similar questions