I have a form containing various input fields and two buttons; one for submitting and one for cancelling.
I don't know if this is still relevant. But when I had similar issue this is how I resolved it.
Where you need to clear an uncontrolled form you simply do this after submission.
this..setState({value: ''});
Hope this helps.