Skip to content

Instantly share code, notes, and snippets.

@jamesattard
Created March 28, 2018 22:49
Show Gist options
  • Save jamesattard/3592cd9f6455ff818bed6ee1869e1a07 to your computer and use it in GitHub Desktop.
Save jamesattard/3592cd9f6455ff818bed6ee1869e1a07 to your computer and use it in GitHub Desktop.
trigger action creator after state completes mutation
class MyComponent extends Component {
render() {
if (!!this.props.payload.success) {
this.props.actionCreator();
return <Redirect to="/dashboard" />;
}
return (
...
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment