Skip to content

Instantly share code, notes, and snippets.

@matthew-gerstman
Created August 23, 2018 14:40
Show Gist options
  • Save matthew-gerstman/fc3befd0a3e2230d0915bdeb44f00f61 to your computer and use it in GitHub Desktop.
Save matthew-gerstman/fc3befd0a3e2230d0915bdeb44f00f61 to your computer and use it in GitHub Desktop.
// data/wizards/store.ts
import { getStore, registerReducer } from "../../redux-utils/store";
import { WIZARD_NAMESPACE_KEY } from "../../redux-utils/types";
import { once } from "lodash";
import wizardReducer from "./reducer";
export const getStoreForWizardApp = once(() => {
registerReducer({ [WIZARD_NAMESPACE_KEY]: wizardReducer });
return getStore();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment