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
5
import {SearchDownloadComponent} from './searchDownload.component';
6
import {LoadingModalModule} from '../../utils/modal/loadingModal.module';
7
import {AlertModalModule} from '../../utils/modal/alertModal.module';
8
9
@NgModule({
10
  imports: [
11
    CommonModule, FormsModule, LoadingModalModule, AlertModalModule
12
  ],
13
  declarations: [
14
    SearchDownloadComponent
15
],
16
17
  providers:[
18
  ],
19
  exports: [
20
    SearchDownloadComponent
21
22
    ]
23
})
24
export class SearchDownloadModule { }