Project

General

Profile

1 61381 k.triantaf
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4
import { RouterModule } from '@angular/router';
5
6
import{SearchFormComponent} from './searchForm.component';
7
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule, RouterModule
11
  ],
12
  declarations: [
13
    SearchFormComponent
14
],
15
16
  providers:[
17
  ],
18
  exports: [
19
    SearchFormComponent
20
21
    ]
22
})
23
export class SearchFormModule { }