Project

General

Profile

1
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import{SearchFormComponent} from './searchForm.component';
6

    
7
@NgModule({
8
  imports: [
9
    CommonModule, FormsModule
10
  ],
11
  declarations: [
12
    SearchFormComponent
13
],
14

    
15
  providers:[
16
  ],
17
  exports: [
18
    SearchFormComponent
19

    
20
    ]
21
})
22
export class SearchFormModule { }
(16-16/28)