The React way to set which option is selected for a select box, is to set a special value prop on the itself, corresponding to the <
value
Another way to do it:
handleChange({ target }) { this.props.someCallback( Array.prototype.slice.call(target.selectedOptions).map(o => o.value) ) }