function(e) {this.props.onChange(e); this.handleChange(e)}.bind(this)
You might not need .bind(this)
, but I suspect you will.
This will create a new function on each render, so it'd be better in certain respects to have that function be a component method, but this should work.