Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import {RouterModule} from '@angular/router';
3
import {ContactComponent} from './contact.component';
4

    
5
@NgModule({
6
    imports: [
7
        RouterModule.forChild([
8
            { path: '', component: ContactComponent}
9
        ])
10
    ]
11
})
12
export class ContactRoutingModule { }
(1-1/4)