Created
September 21, 2016 07:42
-
-
Save jim-at-jibba/a2bdaab76a744b1ad9bd525d62f7679d to your computer and use it in GitHub Desktop.
React Redux Container Component Webstorm/PHPStorm File Template
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 characters
import React, { PropTypes, Component } from 'react'; | |
import { connect } from 'react-redux'; | |
import { bindActionCreators } from 'redux'; | |
// Import actions here!! | |
class $NAME extends Component { | |
constructor(props, context) { | |
super(props, context); | |
} | |
render() { | |
return ( | |
); | |
} | |
} | |
$NAME.propTypes = { | |
//myProp: PropTypes.string.isRequired | |
}; | |
function mapStateToProps(state, ownProps) { | |
return { | |
state: state | |
}; | |
} | |
function mapDispatchToProps(dispatch) { | |
return { | |
actions: bindActionCreators(actions, dispatch) | |
}; | |
} | |
export default connect(mapStateToProps, mapDispatchToProps)($NAME); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment