commentTypesSaga.js 241 B

123456789
  1. export const actionAddCommentFeedTypeSaga = (postId, text) => ({
  2. type:"FEED_POST_COMMENT", postId, text
  3. })
  4. export const actionAddFullCommentFeed = (postId, newResult) => ({
  5. type:"ADD_COMMENT_FEED", postId, newResult
  6. })