Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / pages / workspace / tosca-artifacts / tosca-artifact-page.module.ts
1 import {CommonModule} from "@angular/common";
2 import {NgModule} from "@angular/core";
3 import {SdcUiComponentsModule} from "onap-ui-angular";
4 import {GlobalPipesModule} from "../../../pipes/global-pipes.module";
5 import {NgxDatatableModule} from "@swimlane/ngx-datatable";
6 import {ToscaArtifactPageComponent} from "./tosca-artifact-page.component";
7 import {UiElementsModule} from "../../../components/ui/ui-elements.module";
8
9 @NgModule({
10     declarations: [
11         ToscaArtifactPageComponent
12     ],
13     imports: [
14         CommonModule,
15         SdcUiComponentsModule,
16         NgxDatatableModule,
17         UiElementsModule
18     ],
19     exports: [
20         ToscaArtifactPageComponent
21     ],
22     entryComponents: [
23         ToscaArtifactPageComponent
24     ],
25
26 })
27 export class ToscaArtifactPageModule {
28 }