2019-12-20 12:38:13 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {AlertModalModule} from '../../utils/modal/alertModal.module';
|
|
|
|
import {SafeHtmlPipeModule} from '../../utils/pipes/safeHTMLPipe.module';
|
2020-08-17 14:02:25 +02:00
|
|
|
import {CKEditorModule} from 'ng2-ckeditor';
|
2019-12-20 12:38:13 +01:00
|
|
|
import {PageContentFormComponent} from './page-help-content-form.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
SafeHtmlPipeModule, CKEditorModule,
|
|
|
|
AlertModalModule, ReactiveFormsModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
PageContentFormComponent
|
|
|
|
],
|
|
|
|
exports: [PageContentFormComponent]
|
|
|
|
})
|
|
|
|
export class PageHelpContentFormModule { }
|