Skip to content

Instantly share code, notes, and snippets.

@griffinmichl
Last active March 20, 2017 02:47
Show Gist options
  • Select an option

  • Save griffinmichl/8ee8e8a9dcf55c693823213aabbd230c to your computer and use it in GitHub Desktop.

Select an option

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