spee.ch/react/sagas/index.js
2018-02-07 13:26:07 -08:00

9 lines
229 B
JavaScript

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