Project

General

Profile

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

    
5
import {SearchDataproviderMapComponent} from './searchDataproviderMap.component';
6
import {AlertModalModule} from '../../utils/modal/alertModal.module';
7
import {IFrameModule} from '../../utils/iframe.module';
8

    
9
@NgModule({
10
  imports: [
11
    CommonModule, FormsModule, AlertModalModule, IFrameModule
12
  ],
13
  declarations: [
14
    SearchDataproviderMapComponent
15
],
16

    
17
  providers:[
18
  ],
19
  exports: [
20
    SearchDataproviderMapComponent
21

    
22
    ]
23
})
24
export class SearchDataproviderMapModule { }
(17-17/45)