I\'m presented with a rather silly problem. I am in the process of creating my first React application and I have encountered a little issue, where I am not able to clear my
In your onHandleSubmit function, set your state to {city: ''} again like this :
onHandleSubmit
{city: ''}
this.setState({ city: '' });