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