I see a number of questions on here relating to this same issue, but it seems none match the issue I\'m having, and are a bit more complex.
I am in the process of le
I had the same problem when trying to set the state. when I bind the function inside the constructor, the issue gets solved. check with below binding
constructor(props) { super(props); this.state = { zip: "", forecast: null }; this._handleTextChange = this._handleTextChange.bind(this); }