Skip to content

Instantly share code, notes, and snippets.

@jplemieux66
Created May 6, 2018 17:10
Show Gist options
  • Save jplemieux66/aab5bf60db8b6f7eed670bdc4cfaf35f to your computer and use it in GitHub Desktop.
Save jplemieux66/aab5bf60db8b6f7eed670bdc4cfaf35f to your computer and use it in GitHub Desktop.
export function reducer(state = initialState, action: user.Actions) {
switch(action.type) {
case user.CHANGE_USER:
return {
userId: action.payload
};
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment