Skip to content

Instantly share code, notes, and snippets.

@theStrangeAdventurer
Created November 5, 2019 22:27
Show Gist options
  • Save theStrangeAdventurer/9e45852a9459bef62c6923fd925f6346 to your computer and use it in GitHub Desktop.
Save theStrangeAdventurer/9e45852a9459bef62c6923fd925f6346 to your computer and use it in GitHub Desktop.
REACT REDUX: snippet mapStateToProps changePage connected-react-router
import { push } from 'connected-react-router';
import { bindActionCreators } from 'redux';
const mapDispatchToProps = dispatch =>
bindActionCreators(
{
changePage: () => push('/url-to-another-page')
},
dispatch
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment