Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / forms / env-params / env-params.module.ts
1 import { NgModule } from "@angular/core";
2 import { EnvParamsComponent } from "./env-params.component";
3 import { NgxDatatableModule } from "@swimlane/ngx-datatable";
4 import { SdcUiComponentsModule, SdcUiServices } from "onap-ui-angular";
5
6
7 @NgModule({
8     declarations: [
9         EnvParamsComponent
10     ],
11     imports: [
12         NgxDatatableModule,
13         SdcUiComponentsModule
14     ],
15     exports: [
16         EnvParamsComponent
17     ],
18     entryComponents: [ //need to add anything that will be dynamically created
19         EnvParamsComponent
20     ],
21     providers: [
22         SdcUiServices.ModalService
23     ]
24 })
25
26 export class EnvParamsModule {
27
28 }