Project

General

Profile

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

    
4
import{SearchComponent} from './search.component';
5

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

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