likeTypes.js 201 B

1234567
  1. export const actionChangeLikeType = (newResult) => ({
  2. type:"CHANGE_LIKE", newResult
  3. })
  4. export const actionAddLikePostFeedType = (newResult) => ({
  5. type: 'LIKE_POST_FEED',
  6. newResult,
  7. })