postActionSaga.js 194 B

12345678
  1. export const actionFullOnePostSaga = (_id) => ({
  2. type:"ONE_POST", _id
  3. })
  4. export const actionAddFullCommentSaga = (postId, text) => ({
  5. type:"ONE_POST_COMMENT", postId, text
  6. })