summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/home/home.module.ts
blob: 3e7c0cd3126e84b0a2e0b52fcd674cd76f8cc901 (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
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { HomeComponent } from "./home.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";

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