Skip to content

Instantly share code, notes, and snippets.

@jamesattard
Last active March 29, 2018 06:03
Show Gist options
  • Save jamesattard/02a3ab35aac3492d08b12741e90bed81 to your computer and use it in GitHub Desktop.
Save jamesattard/02a3ab35aac3492d08b12741e90bed81 to your computer and use it in GitHub Desktop.
class MyComponent extends Component {
handleNewSubscription = () => {
this.props.actionCreator();
return <Redirect to="/dashboard" />;
};
render() {
!!this.props.payload.success ? this.handleNewSubscription() : null
return (
...
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment