Skip to content

Instantly share code, notes, and snippets.

@YKalashnikov
Created July 4, 2019 01:07
Show Gist options
  • Save YKalashnikov/3243e8a0c5ef9bec1b5c059f648d45f0 to your computer and use it in GitHub Desktop.
Save YKalashnikov/3243e8a0c5ef9bec1b5c059f648d45f0 to your computer and use it in GitHub Desktop.
const initialState = {
currentUser: {}
}
export default function reducer(state = initialState, action) {
switch (action.type) {
case 'LOGIN_USER':
return {...state, currentUser: action.payload}
case 'LOGOUT_USER':
return {...state, currentUser: {} }
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment