Added themable header, footer and navbar

This commit is contained in:
lotte
2021-03-17 11:32:59 +01:00
committed by Art Lowel
parent f5a34bb14e
commit 1d4c77e485
17 changed files with 141 additions and 6 deletions

View File

@@ -10,6 +10,7 @@ import { ExpandableNavbarSectionComponent } from './expandable-navbar-section/ex
import { NavbarComponent } from './navbar.component';
import { MenuModule } from '../shared/menu/menu.module';
import { FormsModule } from '@angular/forms';
import { ThemedNavbarComponent } from './themed-navbar.component';
const effects = [
NavbarEffects
@@ -31,6 +32,7 @@ const ENTRY_COMPONENTS = [
],
declarations: [
NavbarComponent,
ThemedNavbarComponent,
NavbarSectionComponent,
ExpandableNavbarSectionComponent
],
@@ -42,7 +44,7 @@ const ENTRY_COMPONENTS = [
ExpandableNavbarSectionComponent
],
exports: [
NavbarComponent,
ThemedNavbarComponent,
NavbarSectionComponent,
ExpandableNavbarSectionComponent
]