mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-24 09:17:13 +00:00
21 lines
460 B
TypeScript
21 lines
460 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
import { EmptyLayoutComponent } from 'app/layout/layouts/empty/empty.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
EmptyLayoutComponent
|
|
],
|
|
imports : [
|
|
RouterModule,
|
|
SharedModule
|
|
],
|
|
exports : [
|
|
EmptyLayoutComponent
|
|
]
|
|
})
|
|
export class EmptyLayoutModule
|
|
{
|
|
}
|