about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/settings/index.jsx
blob: f9921d951679ee0d9079ee65d36583df156c535d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { connect }        from 'react-redux';
import PureRenderMixin    from 'react-addons-pure-render-mixin';
import ImmutablePropTypes from 'react-immutable-proptypes';

const mapStateToProps = (state, props) => ({

});

const Settings = React.createClass({

  propTypes: {
    params: React.PropTypes.object.isRequired,
    dispatch: React.PropTypes.func.isRequired
  },

  mixins: [PureRenderMixin],

  componentWillMount () {
    //
  },

  render () {
    return <div>Settings</div>;
  }

});

export default connect(mapStateToProps)(Settings);