ngx-admin/src/app/pages/editors/editors.module.ts
2019-07-02 16:18:09 +03:00

20 lines
472 B
TypeScript

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