We wait to load the user before applying the theme as we will begin aggressively caching most of the react app routes. This means we can not depend on user data to determine.
26 lines
683 B
JavaScript
26 lines
683 B
JavaScript
import errSaga from './err-saga';
|
|
import titleSaga from './title-saga';
|
|
import hardGoToSaga from './hard-go-to-saga';
|
|
import windowSaga from './window-saga';
|
|
import executeChallengeSaga from './execute-challenge-saga';
|
|
import frameSaga from './frame-saga';
|
|
import codeStorageSaga from './code-storage-saga';
|
|
import gitterSaga from './gitter-saga';
|
|
import mouseTrapSaga from './mouse-trap-saga';
|
|
import analyticsSaga from './analytics-saga';
|
|
import nightModeSaga from './night-mode-saga';
|
|
|
|
export default [
|
|
errSaga,
|
|
titleSaga,
|
|
hardGoToSaga,
|
|
windowSaga,
|
|
executeChallengeSaga,
|
|
frameSaga,
|
|
codeStorageSaga,
|
|
gitterSaga,
|
|
mouseTrapSaga,
|
|
analyticsSaga,
|
|
nightModeSaga
|
|
];
|