Created
December 1, 2018 19:47
-
-
Save Jahans3/db3c8b4aa65630f5cac44de946034215 to your computer and use it in GitHub Desktop.
Login async
This file contains hidden or 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
const logIn = (email, password) => async dispatch => { | |
dispatch({ type: 'LOG_IN_REQUEST' }); | |
try { | |
const user = api.authenticateUser(email, password); | |
dispatch({ type: 'LOG_IN_SUCCESS', payload: user }); | |
catch (error) { | |
dispatch({ type: 'LOG_IN_ERROR', payload: error }); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment