Created
March 6, 2022 07:40
-
-
Save mohsentaleb/4ee8ee62c78c1ecf64ec9fb751526d07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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