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

7 lines
164 B
TypeScript
Raw Normal View History

import { all } from "redux-saga/effects"
2019-03-26 16:02:23 +00:00
import { watchFetchCanvas } from "../sagas/CanvasSagas"
export function* rootSaga() {
2019-03-26 16:02:23 +00:00
yield all([watchFetchCanvas()])
}