The Call Kent Podcast
Trailer
Bonus
Episode 1
Season 2
Best way to reset a form
In the example, submitting the form successfully will still retain the current values of the fields.
I want the behavior such that"
- when the server response says the form is NOT submitted successfully, then the form field will have the current values that has been inputted by the user
- But when the server response says that the form is successfully submitted, then the form fields will be blank again.
What's do you think is the best and most performant (and readable) code to approach this in pure React? The approach which will reduce the amount of unnecessary rerenders of the fields?
Thank you!