* feat(nav): make navbar static make the navbar in react layout and the static layout stick to the top of the screen * feat(challenges): Make classic view flex Classic view now uses flex to control it's height. This was necessary to control view and allow navbar to be static on other pages. This breaks mobile view and other non-classic challenge views * feat(app): Add logic to make screen expand on tablet * fix(app): let routes define their content structure * fix(less): use American spelling of gray * fix(classic-preview): make preview smaller to prevent scroll * feat(classic-frame): Make frame border less distinct * fix(challenges): scope test suite less to challenges * feat(challenges): make generic ChallengeTitle component
22 lines
600 B
JavaScript
22 lines
600 B
JavaScript
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';
|
|
|
|
export default [
|
|
analyticsSaga,
|
|
codeStorageSaga,
|
|
errSaga,
|
|
executeChallengeSaga,
|
|
frameEpic,
|
|
hardGoToSaga,
|
|
mouseTrapSaga,
|
|
nightModeSaga,
|
|
titleSaga
|
|
];
|