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

19 lines
407 B
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core';
import { CKEditorModule } from 'ng2-ckeditor';
import { ThemeModule } from '../../@theme/theme.module';
import { EditorsRoutingModule, routedComponents } from './editors-routing.module';
@NgModule({
imports: [
ThemeModule,
EditorsRoutingModule,
CKEditorModule,
],
declarations: [
...routedComponents,
],
})
export class EditorsModule { }