ngx-admin/src/app/pages/editors/editors.module.ts
2017-05-02 19:28:27 +03:00

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