AllenYuan

register - reducer

Apr 26th, 2020
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ...
  2.     // LOGIN => got login response => turn off loading state, put errors in state
  3.     case 'LOGIN':
  4.     case 'REGISTER':
  5.       return {
  6.         ...state,
  7.         inProgress: false,
  8.         errors: action.error ? action.payload.errors : null
  9.       };
  10. // ...
Advertisement
Add Comment
Please, Sign In to add comment