index.js 168 B

12345678910111213
  1. import {
  2. all,
  3. } from 'redux-saga/effects';
  4. import fetchSaga from './fetch';
  5. function* rootSage() {
  6. yield all([
  7. fetchSaga(),
  8. ]);
  9. }
  10. export default rootSage;