Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created August 29, 2018 08:50
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 gladchinda/d0dd7bc63d440dd34b9095a8321a252e to your computer and use it in GitHub Desktop.
Save gladchinda/d0dd7bc63d440dd34b9095a8321a252e to your computer and use it in GitHub Desktop.
export const writeComment = (comment) => ({
comment,
type: 'WRITE_COMMENT'
});
export const updateComment = (id, comment) => ({
id,
comment,
type: 'UPDATE_COMMENT'
});
export const deleteComment = (id) => ({
id,
type: 'DELETE_COMMENT'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment