1a397b44bede71f1a998fedfd0e1f40acd19008b
[sdc.git] / catalog-ui / src / app / ng2 / pages / home / home.module.ts
1 import { NgModule } from "@angular/core";
2 import { CommonModule } from "@angular/common";
3 import { HomeComponent } from "./home.component";
4 import { LayoutModule } from "../../components/layout/layout.module";
5 import { UiElementsModule } from "../../components/ui/ui-elements.module";
6 import { GlobalPipesModule } from "../../pipes/global-pipes.module";
7 import { TranslateModule } from "../../shared/translator/translate.module";
8 import { SdcUiComponentsModule } from "onap-ui-angular";
9 import { ResourceServiceNg2 } from "../../services/component-services/resource.service";
10
11 @NgModule({
12     declarations: [
13         HomeComponent
14     ],
15     imports: [
16         CommonModule,
17         SdcUiComponentsModule,
18         LayoutModule,
19         UiElementsModule,
20         GlobalPipesModule,
21         TranslateModule
22     ],
23     exports: [
24         HomeComponent
25     ],
26     entryComponents: [
27         HomeComponent
28     ],
29     providers: [ResourceServiceNg2]
30 })
31 export class HomeModule {
32 }