In my render method I have component
handleChange is fol
Changing this onChange={this.handleChange} to this onChange={() => this.handleChange()} may also help if all the suggestions above don't work.
onChange={this.handleChange}
onChange={() => this.handleChange()}