commentTypes.js 348 B

123456789101112
  1. export const actionAddCommentPostFeedType = (postId, newResult) => ({
  2. type: 'ADD_COMMENT_POSTS',
  3. postId,
  4. newResult,
  5. })
  6. export const actionAddCommentType = (newResult) => ({
  7. type:"ADD_COMMENT", newResult
  8. })
  9. export const actionAddSubCommentType = (commentId,newResult) => ({
  10. type:"ANSWERS-COMMENT",commentId, newResult
  11. })