Last active
May 12, 2020 06:17
-
-
Save pavinduLakshan/aea971fc72aa13be0ffa3162303c9550 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
const initState = { | |
theme: 'default' | |
} | |
const Reducer = (state=initState,action) => { | |
switch (action.type){ | |
case "CHANGE_THEME": | |
return { | |
...state, | |
theme: action.theme | |
} | |
// you can have as many case statements as you need | |
default: | |
return state | |
} | |
} | |
export default Reducer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment