subscribeTypes.js 207 B

123456789
  1. export const actionChangeFollowingType = (newResult) => ({
  2. type: 'UPDATE_FOLLOWING',
  3. newResult,
  4. })
  5. export const actionChangeFollowersType = (newResult) => ({
  6. type: 'UPDATE_FOLLOWERS',
  7. newResult,
  8. })