2017-04-29 13:40:27 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-07-02 16:18:09 +03:00
|
|
|
import { NbCardModule } from '@nebular/theme';
|
2017-05-02 19:28:27 +03:00
|
|
|
import { CKEditorModule } from 'ng2-ckeditor';
|
2017-04-29 13:40:27 +03:00
|
|
|
|
2017-05-06 14:52:41 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2017-04-29 13:40:27 +03:00
|
|
|
|
2017-05-06 14:52:41 +03:00
|
|
|
import { EditorsRoutingModule, routedComponents } from './editors-routing.module';
|
2017-04-29 13:40:27 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2019-07-02 16:18:09 +03:00
|
|
|
NbCardModule,
|
2017-05-06 14:52:41 +03:00
|
|
|
ThemeModule,
|
|
|
|
|
EditorsRoutingModule,
|
2017-05-02 19:28:27 +03:00
|
|
|
CKEditorModule,
|
2017-04-29 13:40:27 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
...routedComponents,
|
|
|
|
|
],
|
|
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class EditorsModule { }
|