mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { SharedModule } from '../../modules/shared.module';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
import { FuseLayoutComponent } from './layout.component';
|
||
|
import { FuseContentComponent } from './content/content.component';
|
||
|
import { FuseFooterComponent } from './footer/footer.component';
|
||
|
import { FuseNavbarComponent } from './navbar/navbar.component';
|
||
|
import { FuseToolbarComponent } from './toolbar/toolbar.component';
|
||
|
import { FuseNavigationModule } from '../navigation/navigation.module';
|
||
|
import { FuseNavbarToggleDirective } from './navbar/navbar-toggle.directive';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
FuseContentComponent,
|
||
|
FuseFooterComponent,
|
||
|
FuseLayoutComponent,
|
||
|
FuseNavbarComponent,
|
||
|
FuseToolbarComponent,
|
||
|
FuseNavbarToggleDirective
|
||
|
],
|
||
|
imports : [
|
||
|
SharedModule,
|
||
|
RouterModule,
|
||
|
FuseNavigationModule
|
||
|
],
|
||
|
exports : [
|
||
|
FuseLayoutComponent
|
||
|
]
|
||
|
})
|
||
|
|
||
|
export class FuseLayoutModule
|
||
|
{
|
||
|
}
|