Project

General

Profile

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

    
5
import{SearchPagingComponent} from './searchPaging.component';
6
import{PagingModule} from '../../utils/paging.module';
7

    
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule, PagingModule
11
  ],
12
  declarations: [
13
    SearchPagingComponent
14
],
15

    
16
  providers:[
17
  ],
18
  exports: [
19
    SearchPagingComponent
20

    
21
    ]
22
})
23
export class SearchPagingModule { }
(29-29/36)