daddy/client/src/store/sagas/root.ts

12 lines
263 B
TypeScript
Raw Normal View History

import { all } from 'redux-saga/effects';
import { failureRootSaga } from './failure';
import { initRootSaga } from './init';
import { usersRootSaga } from './users';
2020-06-15 18:10:06 +02:00
export function* rootSaga() {
yield all([
initRootSaga(),
failureRootSaga(),
2020-06-15 18:10:06 +02:00
]);
}