AllenYuan

register - reducer1

Apr 26th, 2020
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ...
  2.     case 'LOGIN':
  3.     case 'REGISTER':
  4.       return {
  5.         ...state,
  6.         redirectTo: action.error ? null : '/',
  7.         token: action.error ? null : action.payload.user.token,
  8.         currentUser: action.error ? null : action.payload.user,
  9.       };
  10. // ...
Advertisement
Add Comment
Please, Sign In to add comment