|
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { TestComponent } from './test.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: '', component: TestComponent},
|
|
|
|
])
|
|
]
|
|
})
|
|
export class TestRoutingModule { }
|