Warning, /firebird/firebird-ng/src/app/app.routes.ts is written in an unsupported language. File is not indexed.
0001 import { Routes } from '@angular/router';
0002 import {InputConfigComponent} from "./pages/input-config/input-config.component";
0003
0004 export const routes: Routes = [
0005 { path: '', redirectTo: '/display', pathMatch: 'full' },
0006 { path: 'config', component: InputConfigComponent },
0007 {
0008 path: 'display',
0009 loadComponent: () => import('./pages/main-display/main-display.component').then(m => m.MainDisplayComponent)
0010 },
0011 {
0012 path: 'playground',
0013 loadComponent: () => import('./pages/playground/playground.component').then(m => m.PlaygroundComponent)
0014 },
0015 {
0016 path: 'geometry',
0017 loadComponent: () => import('./pages/geometry-tree/scene-tree.component').then(m => m.SceneTreeComponent)
0018 },
0019 {
0020 path: 'testdp',
0021 loadComponent: () => import('./pages/shell-example/shell-example.component').then(m => m.ShellExampleComponent)
0022 },
0023 {
0024 path: 'split-window',
0025 loadComponent: () => import('./pages/split-window/split-window.component').then(m => m.SplitWindowComponent)
0026 },
0027 ];