summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/maas/maas-routing.module.ts
blob: d71e6896f079b3f7dabbbec118cdafaaf25724b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { ApplicationManagementComponent } from './build/application-management.component';
import { UseApplicationComponent } from './use/use-application.component';
import { KnowledgeBaseManagementComponent } from './knowledge-base-management/knowledge-base-management.component';

const routes: Routes = [
  { path: 'build', component: ApplicationManagementComponent },
  { path: 'use', component: UseApplicationComponent },
  { path: 'knowledge-base-management', component: KnowledgeBaseManagementComponent },
];

@NgModule({
  imports: [RouterModule.forChild(routes)],
  exports: [RouterModule]
})
export class MaasRoutingModule { }