Skip to content

Instantly share code, notes, and snippets.

@vzaidman
Created December 8, 2017 11:44
Show Gist options
  • Save vzaidman/5368f430ec28cbbc304b151205333352 to your computer and use it in GitHub Desktop.
Save vzaidman/5368f430ec28cbbc304b151205333352 to your computer and use it in GitHub Desktop.
export default function makeAsyncActionCreator(baseName) {
const actionCreator = makeActionCreator(`${baseName}@ASYNC_REQUEST`)
actionCreator.success = makeActionCreator(`${baseName}@ASYNC_SUCCESS`)
actionCreator.failure = makeActionCreator(`${baseName}@ASYNC_FAULURE`)
return actionCreator
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment