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.
22 lines
835 B
22 lines
835 B
import { Routes, RouterModule } from '@angular/router'; |
|
import { NgModule } from '@angular/core'; |
|
import { UiComponent } from './ui.component'; |
|
import { PaginatorComponent } from './paginator/paginator.component'; |
|
import { UserdataComponent } from './userdata/userdata.component'; |
|
import { CollectionToolsComponent } from './collection-tools/collection-tools.component'; |
|
import { AddSixFamiliarComponent } from './add-six-familiar/add-six-familiar.component'; |
|
|
|
|
|
|
|
const routes: Routes = [ |
|
{ path: '', component: UiComponent}, |
|
{ path: 'paginator', component:PaginatorComponent }, |
|
{ path: 'userdata', component:UserdataComponent }, |
|
{ path: 'collectionTools', component:CollectionToolsComponent }, |
|
]; |
|
|
|
@NgModule({ |
|
imports: [RouterModule.forChild(routes)], |
|
exports: [RouterModule] |
|
}) |
|
export class UiRoutingModule {}
|
|
|