fga-eps-mds/2019.2-Vsign

View on GitHub
frontend/src/sagas/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { all } from 'redux-saga/effects';
import review from './review';
import record from './record';
import upload from './upload';
import contract from './contract';
import login from './login';

function* root() {
    yield all([
        contract(),
        login(),
        record(),
        review(),
        upload()
    ]);
}

export default root;