2020-03-16 14:09:46 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {FeedbackComponent} from "./feedback.component";
|
|
|
|
import {LandingHeaderModule} from "../landing-utils/landing-header/landing-header.module";
|
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
|
|
|
import {AlertModalModule} from "../../utils/modal/alertModal.module";
|
|
|
|
import {EmailService} from "../../utils/email/email.service";
|
2020-03-27 10:11:56 +01:00
|
|
|
import {RecaptchaModule} from "ng-recaptcha";
|
2022-04-19 15:07:21 +02:00
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
2020-03-16 14:09:46 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2023-08-01 10:40:55 +02:00
|
|
|
imports: [CommonModule, LandingHeaderModule, ReactiveFormsModule, AlertModalModule, RecaptchaModule, IconsModule, InputModule],
|
2020-03-16 14:09:46 +01:00
|
|
|
declarations: [FeedbackComponent],
|
|
|
|
providers: [EmailService],
|
|
|
|
exports: [FeedbackComponent]
|
|
|
|
})
|
2021-07-14 13:19:57 +02:00
|
|
|
export class FeedbackModule {}
|