Skip to content

Instantly share code, notes, and snippets.

@pavinduLakshan
Last active May 12, 2020 06:17
Show Gist options
  • Save pavinduLakshan/aea971fc72aa13be0ffa3162303c9550 to your computer and use it in GitHub Desktop.
Save pavinduLakshan/aea971fc72aa13be0ffa3162303c9550 to your computer and use it in GitHub Desktop.
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