In a React component for a <select> menu, I need to set the selected attribute on the option that reflects the application state. In render(), the optionState is passed from the state owner to the SortMenu component. The option values are passed in as props from JSON. render: function() { var options = [], optionState = this.props.optionState; this.props.options.forEach(function(option) { var sele

