123456789101112131415161718192021 |
- import { ReducerRegistry } from '../base/redux';
-
- import { LANDING_IS_SHOWN } from './actionTypes';
-
- ReducerRegistry.register('features/landing', (state = {}, action) => {
- switch (action.type) {
- case LANDING_IS_SHOWN:
- return {
- ...state,
-
- /**
- * Flag that shows that mobile landing shown shown.
- *
- * @type {App}
- */
- landingIsShown: true
- };
- }
-
- return state;
- });
|