Created
July 16, 2017 12:55
-
-
Save davepoon/7b7dea8cf75eab8e5485279c4a44bbfc to your computer and use it in GitHub Desktop.
React Redux Container Component webstorm template
This file contains 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'; | |
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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment