()
| 7 | |
| 8 | class OptionsContainer extends React.Component { |
| 9 | render() { |
| 10 | return ( |
| 11 | <div className="options-container"> |
| 12 | <div className="container shadow"> |
| 13 | <OptionsForm |
| 14 | updateOptions={ this.props.updateOptions } |
| 15 | options={ this.props.preference.options } |
| 16 | /> |
| 17 | </div> |
| 18 | </div> |
| 19 | ); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | const mapStateToProps = (store) => { |