2017-01-26 21:07:22 -08:00
|
|
|
import analyticsSaga from './analytics-saga.js';
|
|
|
|
import codeStorageSaga from './code-storage-saga.js';
|
|
|
|
import errSaga from './err-saga.js';
|
|
|
|
import executeChallengeSaga from './build-challenge-epic.js';
|
|
|
|
import frameEpic from './frame-epic.js';
|
|
|
|
import hardGoToSaga from './hard-go-to-saga.js';
|
|
|
|
import mouseTrapSaga from './mouse-trap-saga.js';
|
|
|
|
import nightModeSaga from './night-mode-saga.js';
|
|
|
|
import titleSaga from './title-saga.js';
|
2016-01-27 11:34:44 -08:00
|
|
|
|
2016-05-11 21:14:08 -07:00
|
|
|
export default [
|
2017-01-26 21:07:22 -08:00
|
|
|
analyticsSaga,
|
|
|
|
codeStorageSaga,
|
2016-05-11 21:14:08 -07:00
|
|
|
errSaga,
|
2016-05-20 12:42:26 -07:00
|
|
|
executeChallengeSaga,
|
2017-01-26 21:07:22 -08:00
|
|
|
frameEpic,
|
|
|
|
hardGoToSaga,
|
2016-07-21 16:35:37 -07:00
|
|
|
mouseTrapSaga,
|
2017-01-26 21:07:22 -08:00
|
|
|
nightModeSaga,
|
2017-03-13 16:17:07 -07:00
|
|
|
titleSaga
|
2016-05-11 21:14:08 -07:00
|
|
|
];
|