Skip to content

Instantly share code, notes, and snippets.

@griffinmichl
Last active March 20, 2017 02:47
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 griffinmichl/8ee8e8a9dcf55c693823213aabbd230c to your computer and use it in GitHub Desktop.
Save griffinmichl/8ee8e8a9dcf55c693823213aabbd230c to your computer and use it in GitHub Desktop.
const mapDispatchToProps = dispatch => ({
toggleOpen: () => dispatch({
type: 'TOGGLE_TRUE',
meta: {
component: 'ThisComponent',
},
}),
toggleClosed: dispatch({
type: 'TOGGLE_FALSE',
meta: {
component: 'ThisComponent',
},
}),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment