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