2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import {AlertModal} from './alert';
|
|
|
|
import {ModalModule} from './modal.module';
|
2021-03-01 18:32:21 +01:00
|
|
|
import {SafeHtmlPipeModule} from "../pipes/safeHTMLPipe.module";
|
2022-04-07 00:09:49 +02:00
|
|
|
import {IconsModule} from "../icons/icons.module";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2022-04-07 00:09:49 +02:00
|
|
|
imports: [CommonModule, FormsModule, ModalModule, SafeHtmlPipeModule, IconsModule],
|
2017-12-19 13:53:46 +01:00
|
|
|
declarations: [
|
|
|
|
AlertModal
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
AlertModal
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AlertModalModule { }
|