Created
July 16, 2017 12:55
-
-
Save davepoon/7b7dea8cf75eab8e5485279c4a44bbfc to your computer and use it in GitHub Desktop.
Revisions
-
davepoon created this gist
Jul 16, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ import React, { PropTypes, Component } from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; class $NAME extends Component { constructor(props, context) { super(props, context); } render() { return ( ); } } $NAME .propTypes = { actions: PropTypes.object.isRequired, }; function mapStateToProps(state, ownProps) { return { state: state }; } function mapDispatchToProps(dispatch) { return { actions: bindActionCreators(actions, dispatch) }; } export default connect(mapStateToProps, mapDispatchToProps)($NAME);