On IE11/React 15.1.0 when copy/paste data to a text field using right click on mouse, onChange is not firing, this works fine in Chrome and Firefox.
To resolve this I am using onBlur along with onChange with the input field but somehow I know its not the right approach.
<input name="username" onChange={this.props.updateName}
onBlur={this.props.updateName} id="username" />
I found a similar discussion on Github but the fix was made in later versions 15.6.0 but I can't update the version of React as it might break the app.