Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / layout / layout.module.ts
1 import { NgModule } from "@angular/core";
2 import { CommonModule } from "@angular/common";
3 import { FormsModule } from "@angular/forms";
4 import { TranslateModule } from "../../shared/translator/translate.module";
5 import { TopNavComponent } from "./top-nav/top-nav.component";
6
7 @NgModule({
8     declarations: [
9         TopNavComponent
10     ],
11     imports: [
12         CommonModule,
13         FormsModule,
14         TranslateModule
15     ],
16     exports: [
17         TopNavComponent
18     ],
19     entryComponents: [ //need to add anything that will be dynamically created
20         TopNavComponent
21     ],
22     providers: []
23 })
24 export class LayoutModule {
25
26 }