spee.ch/react/sagas/index.js
2018-02-07 23:02:57 -08:00

11 lines
327 B
JavaScript

import { all } from 'redux-saga/effects';
import { watchNewAssetRequest, watchShowNewAsset, watchNewChannelRequest, watchFileIsRequested } from './show';
export default function* rootSaga () {
yield all([
watchNewAssetRequest(),
watchShowNewAsset(),
watchNewChannelRequest(),
watchFileIsRequested(),
]);
}