Last active
October 7, 2016 20:20
-
-
Save jacobp100/2e858bc7f94b31be9542d01e13a86278 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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