Skip to content

Instantly share code, notes, and snippets.

@reireynoso
Created September 29, 2020 18:19
Show Gist options
  • Save reireynoso/b2e8635e4d08d8269094af23806c58bf to your computer and use it in GitHub Desktop.
Save reireynoso/b2e8635e4d08d8269094af23806c58bf to your computer and use it in GitHub Desktop.
Context API reducer
export const initialState = {
view: "home"
};
const reducer = (state, action) => {
switch (action.type) {
case "SET_VIEW":
return {
...state,
view: action.view
};
default:
return state;
}
};
export default reducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment