Skip to content

Instantly share code, notes, and snippets.

@bmind12
Created April 5, 2018 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmind12/60b8dc7550db0e588cdae4da1c7cf3e4 to your computer and use it in GitHub Desktop.
Save bmind12/60b8dc7550db0e588cdae4da1c7cf3e4 to your computer and use it in GitHub Desktop.
Action creator with flag
export function addComment(comment, articleId) {
return {
type: ADD_COMMENT,
payload: { comment, articleId },
generateId: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment