Guest User

Untitled

a guest
Jan 23rd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 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. case AUTH.SIGN_IN_ERROR:
  8. return {
  9. ...state,
  10. showSpinner: false
  11. };
  12. // ...
  13. }
  14. };
Add Comment
Please, Sign In to add comment