Skip to content

Instantly share code, notes, and snippets.

@YKalashnikov
Created July 4, 2019 00:49
Show Gist options
  • Save YKalashnikov/cb8f848b091d4bc5e486157ea1d647d6 to your computer and use it in GitHub Desktop.
Save YKalashnikov/cb8f848b091d4bc5e486157ea1d647d6 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}
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment