Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pirate
Last active December 20, 2017 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pirate/d8e99a2c5dc9156115b821df4fc1ffc2 to your computer and use it in GitHub Desktop.
Save pirate/d8e99a2c5dc9156115b821df4fc1ffc2 to your computer and use it in GitHub Desktop.
const mapStateToProps = (state}) => ({
...
})
const mapDispatchToProps = (dispatch) => ({
...
})
const Component = (props) =>
<div></div>
export const SomeComponent = connect(
mapStateToProps,
mapDispatchToProps,
)(Component)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment