2023-10-19 15:33:04 +02:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {EditStakeholderComponent} from "./edit-stakeholder.component";
|
|
|
|
import {CommonModule} from "@angular/common";
|
2023-10-20 18:07:33 +02:00
|
|
|
import {InputModule} from "../../../sharedComponents/input/input.module";
|
2023-10-19 15:33:04 +02:00
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
2023-10-20 18:07:33 +02:00
|
|
|
import {IconsModule} from "../../../utils/icons/icons.module";
|
|
|
|
import {NotifyFormModule} from "../../../notifications/notify-form/notify-form.module";
|
2023-10-19 15:33:04 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, InputModule, ReactiveFormsModule, IconsModule, NotifyFormModule],
|
|
|
|
declarations: [EditStakeholderComponent],
|
|
|
|
exports: [EditStakeholderComponent]
|
|
|
|
})
|
|
|
|
export class EditStakeholderModule {}
|