aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/layout/layout.module.ts
blob: f6d2cf487efea75249531f6b44379fdd8b7fea17 (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
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";
import { TranslateModule } from "../../shared/translator/translate.module";
import { TopNavComponent } from "./top-nav/top-nav.component";

@NgModule({
    declarations: [
        TopNavComponent
    ],
    imports: [
        CommonModule,
        FormsModule,
        TranslateModule
    ],
    exports: [
        TopNavComponent
    ],
    entryComponents: [ //need to add anything that will be dynamically created
        TopNavComponent
    ],
    providers: []
})
export class LayoutModule {

}