ngx-admin/src/app/pages/editors/editors.module.ts

17 lines
359 B
TypeScript
Raw Normal View History

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 { }