2021-03-04 12:32:57 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {NotifyFormComponent} from "./notify-form.component";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
|
|
|
import {NotificationUserModule} from "../notification-user/notification-user.module";
|
|
|
|
|
|
|
|
@NgModule({
|
2023-08-01 10:40:55 +02:00
|
|
|
imports: [CommonModule, ReactiveFormsModule, InputModule, NotificationUserModule],
|
2021-03-04 12:32:57 +01:00
|
|
|
declarations: [NotifyFormComponent],
|
|
|
|
exports: [NotifyFormComponent]
|
|
|
|
})
|
|
|
|
export class NotifyFormModule {
|
|
|
|
|
|
|
|
}
|