import { all } from 'redux-saga/effects'; import { failureRootSaga } from './failure'; import { initRootSaga } from './init'; import { profileRootSaga } from './profile'; export function* rootSaga() { yield all([ initRootSaga(), failureRootSaga(), profileRootSaga(), ]); }