const StateContent = createContext(); | |
export function useStore () { | |
const { state, dispatch } = useContext(StateContext); | |
return [state, dispatch]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment