Guest User

Untitled

a guest
Jan 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import { AUTH } from './actionTypes';
  2.  
  3. export const reducer = (state, action) => {
  4. switch(action.type) {
  5. // ...
  6. case AUTH.SIGN_IN_SUCCESS:
  7. return {
  8. ...state,
  9. user: action.user
  10. };
  11. // ...
  12. }
  13. };
Add Comment
Please, Sign In to add comment