Created
November 3, 2018 15:05
-
-
Save nenjotsu/098873d36025ae7d9273ec6e731d71fa to your computer and use it in GitHub Desktop.
Components with sequence of epics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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