jiti-meet/react/features/unsupported-browser/actions.js

17 lines
322 B
JavaScript
Raw Normal View History

2016-12-23 16:21:51 +00:00
import { LANDING_IS_SHOWN } from './actionTypes';
import './reducer';
/**
* Returns an action that mobile landing is shown
* and there is no need to show it on other pages.
*
* @returns {{
* type: LANDING_IS_SHOWN
* }}
*/
export function landingIsShown() {
return {
type: LANDING_IS_SHOWN
};
}