mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
26 lines
613 B
TypeScript
26 lines
613 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { CKEditorModule } from 'ng2-ckeditor';
|
|
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,
|
|
CKEditorModule,
|
|
routing
|
|
],
|
|
declarations: [
|
|
Editors,
|
|
Ckeditor
|
|
]
|
|
})
|
|
export default class EditorsModule {
|
|
}
|