Created
June 28, 2016 17:40
-
-
Save smashercosmo/29e5f970454da25b7610a66f0117e41b 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 store = createStore( | |
| reducer, | |
| applyMiddleware(thunk.withExtraArgument({analytics: () => window.analytics})) | |
| ) | |
| // later | |
| function fetchUser(id) { | |
| return (dispatch, getState, {analytics}}) => { | |
| analytics().track(...); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment