likeTypes.js 194 B

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