Skip to content
Snippets Groups Projects
app-routing.module.ts 1.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { AboutComponent } from './app-root/about/about.component';
    
    import { StartComponent } from './start/start.component';
    import { NgModule } from '@angular/core';
    import { Routes, RouterModule } from '@angular/router';
    
    import {AppRootComponent} from "./app-root/app-root.component";
    
      {path: '', component: AppRootComponent, pathMatch: 'full'},
      {path: 'root', component: AppRootComponent},
    
      {path: 'start', component: StartComponent},
    
    Martin Mechtel's avatar
    Martin Mechtel committed
      {path: 'about', component: AboutComponent},
    
      {path: 'check', loadChildren: () => import('./sys-check/sys-check.module').then(m => m.SysCheckModule)},
      {path: 'admin', loadChildren: () => import('./workspace-admin/workspace.module').then(m => m.WorkspaceModule)},
      {path: 'superadmin', loadChildren: () => import('./superadmin/superadmin.module').then(m => m.SuperadminModule)},
      {path: 'wsmonitor', loadChildren: () => import('./workspace-monitor/workspace-monitor.module').then(m => m.WorkspaceMonitorModule)},
      {path: 't', loadChildren: () => import('./test-controller/test-controller.module').then(m => m.TestControllerModule)}
    
    ];
    
    @NgModule({
      imports: [RouterModule.forRoot(routes)],
      exports: [RouterModule]
    })
    export class AppRoutingModule { }