edit
This commit is contained in:
12
src/app/routes/menu-manager/menu-manager.module.ts
Normal file
12
src/app/routes/menu-manager/menu-manager.module.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { NgModule, Type } from '@angular/core';
|
||||
import { SharedModule } from '@shared';
|
||||
import { MenuManagerComponentsIndexComponent } from './components/index/index.component';
|
||||
import { MenuManagerRoutingModule } from './menu-manager-routing.module';
|
||||
|
||||
const COMPONENTS: Type<void>[] = [MenuManagerComponentsIndexComponent];
|
||||
const COMPONENTS_NOROUNT: Type<void>[] = [];
|
||||
@NgModule({
|
||||
imports: [SharedModule, MenuManagerRoutingModule],
|
||||
declarations: [...COMPONENTS, ...COMPONENTS_NOROUNT]
|
||||
})
|
||||
export class MenuManagerModule {}
|
||||
Reference in New Issue
Block a user