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

16 lines
349 B
JavaScript

import { RouteRegistry } from '../base/navigator';
import { Landing } from './components';
RouteRegistry.register({
component: Landing,
path: '/mobile-app',
onEnter: store => () => {
const state = store.getState();
const { landingIsShown } = state;
if (landingIsShown) {
return;
}
}
});