Created
May 8, 2018 10:51
-
-
Save adrianfaciu/7ea702e71e64114d574665672799fdab to your computer and use it in GitHub Desktop.
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
export function reducer(state = initialState, action: AuthActionsUnion): State { | |
switch (action.type) { | |
case AuthActionTypes.LoginSuccess: { | |
return { | |
...state, | |
loggedIn: true, | |
user: action.payload.user, | |
}; | |
} | |
case AuthActionTypes.Logout: { | |
return initialState; | |
} | |
default: { | |
return state; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment