Skip to content

Instantly share code, notes, and snippets.

@georg3103
Created May 15, 2020 15:02
Show Gist options
  • Save georg3103/ea9e44c874859fe7d83f1d37d21d9617 to your computer and use it in GitHub Desktop.
Save georg3103/ea9e44c874859fe7d83f1d37d21d9617 to your computer and use it in GitHub Desktop.
const thunk = (store) => (next) => (action) => {
if (typeof action === 'function') {
return action(store.dispatch)
}
return next(action)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment