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 970B

12345678910111213141516171819202122232425262728293031323334
  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. import paymentSaga from "./paymentSaga";
  16. export default function* rootSaga() {
  17. yield all([
  18. loginSaga(),
  19. registerSaga(),
  20. forgotPasswordSaga(),
  21. offersSaga(),
  22. categoriesSaga(),
  23. locationsSaga(),
  24. profileSaga(),
  25. chatSaga(),
  26. queryStringSaga(),
  27. exchangeSaga(),
  28. reviewSaga(),
  29. counterSaga(),
  30. adminSaga(),
  31. paymentSaga(),
  32. ]);
  33. }