Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Created November 16, 2017 01:55
Show Gist options
  • Save Jahans3/ed22aec54e0955203d0290d254334fe2 to your computer and use it in GitHub Desktop.
Save Jahans3/ed22aec54e0955203d0290d254334fe2 to your computer and use it in GitHub Desktop.
const updateUsers = () => async dispatch => {
dispatch(fetchUsersBegin())
try {
const users = await userService.fetch()
dispatch(updateUsersSuccess(users))
catch (err) {
dispatch(updateUsersFailure(err))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment