Skip to content

Instantly share code, notes, and snippets.

@andregardi
Created September 12, 2020 13:06
Show Gist options
  • Save andregardi/c0d20aa2f4b2715328d0d1ba320a88e3 to your computer and use it in GitHub Desktop.
Save andregardi/c0d20aa2f4b2715328d0d1ba320a88e3 to your computer and use it in GitHub Desktop.
import React from "react";
import Immer from "immer";
import globalHook from "use-global-hook";
import * as actions from "../actions";
import { initialState } from "./initialState";
const options = { Immer };
const useGlobal = globalHook(React, initialState, actions, options);
export default useGlobal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment