blob: 827209326c6e6e565ef2a8c9bb81540df1f77013 (
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
|
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: [],
entryComponents: [ //need to add anything that will be dynamically created
TopNavComponent
],
providers: []
})
export class LayoutModule {
}
|