Skip to content

Instantly share code, notes, and snippets.

@Porter97
Created April 8, 2020 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/abd4e783b483da9b1a340454eae8132d to your computer and use it in GitHub Desktop.
Save Porter97/abd4e783b483da9b1a340454eae8132d to your computer and use it in GitHub Desktop.
export default (state = {}, action) => {
switch (action.type) {
case 'PROFILE_PAGE_LOADED':
return {
...action.payload.profile
};
case 'PROFILE_PAGE_UNLOADED':
return {};
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment