Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created February 26, 2018 15:37
Show Gist options
  • Save ShMcK/1a6763ca4211fa0540da0b816968684c to your computer and use it in GitHub Desktop.
Save ShMcK/1a6763ca4211fa0540da0b816968684c to your computer and use it in GitHub Desktop.
thunk example
const incrementAsync = (count) => async (dispatch) => {
await delay()
dispatch(increment(count))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment