Skip to content

Instantly share code, notes, and snippets.

@nenjotsu
Created November 3, 2018 15:05
Show Gist options
  • Save nenjotsu/098873d36025ae7d9273ec6e731d71fa to your computer and use it in GitHub Desktop.
Save nenjotsu/098873d36025ae7d9273ec6e731d71fa to your computer and use it in GitHub Desktop.
Components with sequence of epics
componentDidMount() {
const { reduxActions } = this.props;
reduxActions.getMasterData();
reduxActions.getUserLists();
}
updateUserAssignments = () => {
const { reduxActions } = this.props;
reduxActions.getUserInformation();
reduxActions.updateUserAssignment();
reduxActions.sendEmails();
reduxActions.sendNotifications();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment