mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-03 10:01:47 -04:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
import { sagas as appSagas } from './redux';
|
|
import { sagas as challengeSagas } from './routes/challenges/redux';
|
|
|
|
export default [
|
|
...appSagas,
|
|
...challengeSagas
|
|
];
|