Project

General

Profile

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

    
5
import {SearchDownloadComponent} from './searchDownload.component';
6
import{LoadingModalModule} from '../../utils/modal/loadingModal.module';
7

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

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

    
21
    ]
22
})
23
export class SearchDownloadModule { }
(11-11/28)