Skip to content

Instantly share code, notes, and snippets.

@du5rte
Created June 23, 2017 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save du5rte/8486fd35013456175dea9f9992a29ced to your computer and use it in GitHub Desktop.
Save du5rte/8486fd35013456175dea9f9992a29ced to your computer and use it in GitHub Desktop.
Redux Store on different development modes
export default (
process.env.NODE_ENV === "production"
? require("./productionStore").default
: require("./developmentStore").default
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment