State Management Patterns — React

useReducer + Context = Global State const AppContext = createContext() function appReducer(state, action) { switch (action.type) { case "SET_USER": return { ...