You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

route.js 170B

12345678
  1. import { RouteRegistry } from '../base/navigator';
  2. import { Landing } from './components';
  3. RouteRegistry.register({
  4. component: Landing,
  5. path: '/mobile-app'
  6. });