Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import { RouterModule } from '@angular/router';
3

    
4
import { TestComponent } from './test.component';
5

    
6
@NgModule({
7
  imports: [
8
    RouterModule.forChild([
9
      { path: '', component: TestComponent},
10

    
11
    ])
12
  ]
13
})
14
export class TestRoutingModule { }
(1-1/3)