aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/catalog/catalog.module.ts
blob: 5ef8de01e3a94a6b68811f65c7385b9486c1526d (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
29
30
31
32
33
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { CatalogComponent } from "./catalog.component";
import { LayoutModule } from "../../components/layout/layout.module";
import { UiElementsModule } from "../../components/ui/ui-elements.module";
import { GlobalPipesModule } from "../../pipes/global-pipes.module";
import { TranslateModule } from "../../shared/translator/translate.module";
import { SdcUiComponentsModule } from "onap-ui-angular";
import {SdcTileModule} from "../../components/ui/tile/sdc-tile.module";

@NgModule({
    declarations: [
        CatalogComponent
    ],
    imports: [
        CommonModule,
        SdcUiComponentsModule,
        LayoutModule,
        UiElementsModule,
        GlobalPipesModule,
        TranslateModule,
        SdcTileModule
    ],
    exports: [
        CatalogComponent
    ],
    entryComponents: [
        CatalogComponent
    ],
    providers: []
})
export class CatalogModule {
}