I have a form containing various input fields and two buttons; one for submitting and one for cancelling.
Very easy:
handleSubmit(e){ e.preventDefault(); e.target.reset(); }
...
Good luck :)