2016-08-26 17:37:59 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
2016-09-19 14:30:30 +03:00
|
|
|
import { CKEditorModule } from 'ng2-ckeditor';
|
2016-08-26 17:37:59 +03:00
|
|
|
import { NgaModule } from '../../theme/nga.module';
|
|
|
|
|
|
|
|
|
|
import { routing } from './editors.routing';
|
|
|
|
|
import { Editors } from './editors.component';
|
|
|
|
|
import { Ckeditor } from './components/ckeditor/ckeditor.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
NgaModule,
|
2016-09-19 14:30:30 +03:00
|
|
|
CKEditorModule,
|
2016-08-26 17:37:59 +03:00
|
|
|
routing
|
|
|
|
|
],
|
|
|
|
|
declarations: [
|
|
|
|
|
Editors,
|
|
|
|
|
Ckeditor
|
|
|
|
|
]
|
|
|
|
|
})
|
2016-09-19 14:30:30 +03:00
|
|
|
export default class EditorsModule {
|
|
|
|
|
}
|