postActionTypes.js 340 B

12345678910
  1. export const actionOnePostType = (onePost) => ({ type: 'POST', onePost })
  2. export const actionClearOnePostType = () => ({ type: 'CLEAR_ONE_POST' })
  3. export const actionChangeLikeType = (newResult) => ({
  4. type:"CHANGE_LIKE", newResult
  5. })
  6. export const actionAddCommentType = (newResult) => ({
  7. type:"ADD_COMMENT", newResult
  8. })