Project

General

Profile

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