mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-15 14:08:52 +01:00
20 lines
472 B
TypeScript
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 { }
|