Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / forms / artifacts-form / artifact-form.module.ts
1 /**
2  * Created by rc2122 on 5/24/2018.
3  */
4 import { NgModule } from "@angular/core";
5 import { TranslateModule } from "app/ng2/shared/translator/translate.module";
6 import { SdcUiComponentsModule } from "onap-ui-angular";
7 import { CommonModule } from '@angular/common';
8 import {ArtifactFormComponent} from "./artifact-form.component";
9
10 @NgModule({
11     declarations: [ArtifactFormComponent],
12     imports: [TranslateModule,
13         SdcUiComponentsModule,
14         CommonModule],
15     exports: [ArtifactFormComponent],
16     entryComponents: [ArtifactFormComponent]
17 })
18
19
20 export class ArtifactFormModule {
21 }