Skip to content

Instantly share code, notes, and snippets.

@mohsentaleb
Created March 6, 2022 07:40
Show Gist options
  • Save mohsentaleb/4ee8ee62c78c1ecf64ec9fb751526d07 to your computer and use it in GitHub Desktop.
Save mohsentaleb/4ee8ee62c78c1ecf64ec9fb751526d07 to your computer and use it in GitHub Desktop.
export const reducer = (state, action) => {
switch (action.type) {
case "SET_BACKGROUND_COLOR":
const background = action.payload.background
return { ...state, background };
case "SET_CONTENT":
const content = action.payload.content;
return { ...state, content };
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment