In my render method I have component
handleChange is fol
You are executing function rather than passing it as a prop.
You need to change this,
onChange={this.handleChange()}
with this,
onChange={this.handleChange}