PromucFlow_constructor/app/client/src/sagas/index.tsx

9 lines
347 B
TypeScript
Raw Normal View History

2019-09-13 09:56:11 +00:00
import { all, fork, spawn } from "redux-saga/effects"
import { watchFetchPage } from "../sagas/PageSagas"
2019-08-21 12:49:16 +00:00
import { fetchWidgetCardsSaga } from './WidgetCardsPaneSagas'
2019-09-13 09:56:11 +00:00
import { watchExecuteAction } from './ActionSagas';
export function* rootSaga() {
2019-09-13 09:56:11 +00:00
yield all([ spawn(watchFetchPage), spawn(fetchWidgetCardsSaga), spawn(watchExecuteAction)])
}