Files
jitsi-meet/react/features/landing/reducer.js
2017-01-26 07:27:31 -06:00

22 lines
477 B
JavaScript

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;
});