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