UNPKG

npr-pattern-typescript

Version:

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and NPR (New React Pattern).

11 lines (9 loc) 249 B
import { all } from "redux-saga/effects"; //import your every saga here import { mainSaga } from "views/main/db/saga"; export default function* rootSaga() { yield all([ // add your saga here as exampleSaga() mainSaga(), ]); }