aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/req-and-capabilities-editor/requirements-editor/requirements-editor.module.ts
blob: d38790a8db0f73061448fe44a6b04398d64bfd73 (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
import {NgModule} from "@angular/core";
import {CommonModule} from "@angular/common";
import {RequirementsEditorComponent} from "./requirements-editor.component";
import {FormsModule} from "@angular/forms";
import {FormElementsModule} from "../../../components/ui/form-components/form-elements.module";
import {TranslateModule} from 'app/ng2/shared/translator/translate.module';
import { SdcUiComponentsModule } from "onap-ui-angular";

@NgModule({
    declarations: [
        RequirementsEditorComponent
    ],
    imports: [CommonModule,
        FormsModule,
        FormElementsModule,
        TranslateModule,
        SdcUiComponentsModule
    ],
    exports: [],
    entryComponents: [
        RequirementsEditorComponent
    ],
    providers: []
})
export class RequirementsEditorModule {
}