import { all, } from 'redux-saga/effects'; import fetchSaga from './fetch'; function* rootSage() { yield all([ fetchSaga(), ]); } export default rootSage;