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

8 lines
244 B
TypeScript
Raw Normal View History

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