Skip to content

Instantly share code, notes, and snippets.

@smashercosmo
Created June 28, 2016 17:40
Show Gist options
  • Select an option

  • Save smashercosmo/29e5f970454da25b7610a66f0117e41b to your computer and use it in GitHub Desktop.

Select an option

Save smashercosmo/29e5f970454da25b7610a66f0117e41b to your computer and use it in GitHub Desktop.
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