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

15 lines
367 B
TypeScript

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