Skip to content

Instantly share code, notes, and snippets.

@minajevs
Last active October 12, 2018 08:48
Show Gist options
  • Save minajevs/043cc0f632c1cf9ea95b8eeac11f6671 to your computer and use it in GitHub Desktop.
Save minajevs/043cc0f632c1cf9ea95b8eeac11f6671 to your computer and use it in GitHub Desktop.
function thunk(payload) {
return function (dispatch) {
doSomething(payload)
return dispatch(someAction())
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment