Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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