mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-09-02 00:17:46 +00:00
16 lines
349 B
JavaScript
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;
|
|
}
|
|
}
|
|
});
|