React input onChange won't fire
Try:
onChange={(evt) => this.changeTitle(evt)}
or:
onChange={this.changeTitle.bind(this)}
instead of:
onChange={this.changeTitle}
try moving the onChange to the parent div.. this worked for me
Try:
onChange={(evt) => this.changeTitle(evt)}
or:
onChange={this.changeTitle.bind(this)}
instead of:
onChange={this.changeTitle}
try moving the onChange to the parent div.. this worked for me