Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Last active October 7, 2016 20:20
Show Gist options
  • Save jacobp100/2e858bc7f94b31be9542d01e13a86278 to your computer and use it in GitHub Desktop.
Save jacobp100/2e858bc7f94b31be9542d01e13a86278 to your computer and use it in GitHub Desktop.
const createStore = ({ middlewares = [] }) => {
const store = {};
store.dispatch = combineMiddlewares(middlewares)(store);
return store;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment