aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/forms/env-params/env-params.module.ts
blob: 85797bd45faddfddd9fa4b7730fdd68b8e782bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { NgModule } from "@angular/core";
import { EnvParamsComponent } from "./env-params.component";
import { NgxDatatableModule } from "@swimlane/ngx-datatable";
import { SdcUiComponentsModule, SdcUiServices } from "onap-ui-angular";


@NgModule({
    declarations: [
        EnvParamsComponent
    ],
    imports: [
        NgxDatatableModule,
        SdcUiComponentsModule
    ],
    exports: [
        EnvParamsComponent
    ],
    entryComponents: [ //need to add anything that will be dynamically created
        EnvParamsComponent
    ],
    providers: [
        SdcUiServices.ModalService
    ]
})

export class EnvParamsModule {

}