mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 09:20:12 +01:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
|
||
|
|
import { NgxSharedModule } from '../../@shared/shared.module';
|
||
|
|
|
||
|
|
import { NgxEditorsRoutingModule, routedComponents } from './editors-routing.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
NgxSharedModule,
|
||
|
|
NgxEditorsRoutingModule,
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
...routedComponents,
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class NgxEditorsModule { }
|