You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 909B

1234567891011121314151617181920212223242526272829303132
  1. import { all } from 'redux-saga/effects';
  2. import adminSaga from './adminSaga';
  3. import categoriesSaga from './categoriesSaga';
  4. import chatSaga from './chatSaga';
  5. import counterSaga from './counterSaga';
  6. import exchangeSaga from './exchangeSaga';
  7. import forgotPasswordSaga from './forgotPasswordSaga';
  8. import locationsSaga from './locationsSaga';
  9. import loginSaga from './loginSaga';
  10. import offersSaga from './offersSaga';
  11. import profileSaga from './profileSaga';
  12. import queryStringSaga from './queryStringSaga';
  13. import registerSaga from './registerSaga';
  14. import reviewSaga from './reviewSaga';
  15. export default function* rootSaga() {
  16. yield all([
  17. loginSaga(),
  18. registerSaga(),
  19. forgotPasswordSaga(),
  20. offersSaga(),
  21. categoriesSaga(),
  22. locationsSaga(),
  23. profileSaga(),
  24. chatSaga(),
  25. queryStringSaga(),
  26. exchangeSaga(),
  27. reviewSaga(),
  28. counterSaga(),
  29. adminSaga()
  30. ]);
  31. }