mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-23 23:17:05 +00:00
28 lines
816 B
TypeScript
28 lines
816 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { FuseSharedModule } from '@fuse/shared.module';
|
|
|
|
import { NavbarComponent } from 'app/layout/components/navbar/navbar.component';
|
|
import { NavbarHorizontalStyle1Module } from 'app/layout/components/navbar/horizontal/style-1/style-1.module';
|
|
import { NavbarVerticalStyle1Module } from 'app/layout/components/navbar/vertical/style-1/style-1.module';
|
|
import { NavbarVerticalStyle2Module } from 'app/layout/components/navbar/vertical/style-2/style-2.module';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
NavbarComponent
|
|
],
|
|
imports : [
|
|
FuseSharedModule,
|
|
|
|
NavbarHorizontalStyle1Module,
|
|
NavbarVerticalStyle1Module,
|
|
NavbarVerticalStyle2Module
|
|
],
|
|
exports : [
|
|
NavbarComponent
|
|
]
|
|
})
|
|
export class NavbarModule
|
|
{
|
|
}
|