You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
566 B

  1. import { connect } from 'react-redux';
  2. import PureRenderMixin from 'react-addons-pure-render-mixin';
  3. import ImmutablePropTypes from 'react-immutable-proptypes';
  4. const mapStateToProps = (state, props) => ({
  5. });
  6. const Subscriptions = React.createClass({
  7. propTypes: {
  8. params: React.PropTypes.object.isRequired,
  9. dispatch: React.PropTypes.func.isRequired
  10. },
  11. mixins: [PureRenderMixin],
  12. componentWillMount () {
  13. //
  14. },
  15. render () {
  16. return <div>Subscriptions</div>;
  17. }
  18. });
  19. export default connect(mapStateToProps)(Subscriptions);