Skip to content

Instantly share code, notes, and snippets.

@jdjkelly
Last active April 30, 2017 16:16
Show Gist options
  • Save jdjkelly/4fa996cc59a8cbfd9031479cd83a7566 to your computer and use it in GitHub Desktop.
Save jdjkelly/4fa996cc59a8cbfd9031479cd83a7566 to your computer and use it in GitHub Desktop.
redux/createStore.js
export default function createStore(reducer, preloadedState, enhancer) {
...
return {
dispatch,
subscribe,
getState,
replaceReducer,
[$$observable]: observable
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment