2019-12-03 13:50:39 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
|
|
|
|
import {ContactUsComponent} from './contact-us.component';
|
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
2020-06-23 22:50:46 +02:00
|
|
|
import {MatAutocompleteModule} from "@angular/material/autocomplete";
|
2021-07-14 13:19:57 +02:00
|
|
|
import {RecaptchaModule} from "ng-recaptcha";
|
2022-01-12 13:12:30 +01:00
|
|
|
import {SafeHtmlPipeModule} from "../utils/pipes/safeHTMLPipe.module";
|
2022-02-24 17:42:05 +01:00
|
|
|
import {LoadingModule} from "../utils/loading/loading.module";
|
2022-04-04 16:23:08 +02:00
|
|
|
import {InputModule} from "../sharedComponents/input/input.module";
|
2019-12-03 13:50:39 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2020-06-23 22:50:46 +02:00
|
|
|
imports: [
|
|
|
|
CommonModule, RouterModule,
|
2022-04-04 16:23:08 +02:00
|
|
|
ReactiveFormsModule, MatAutocompleteModule, RecaptchaModule, SafeHtmlPipeModule, LoadingModule, InputModule],
|
2021-07-14 13:19:57 +02:00
|
|
|
declarations: [
|
|
|
|
ContactUsComponent
|
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
exports: [
|
|
|
|
ContactUsComponent
|
|
|
|
]
|
2019-12-03 13:50:39 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
export class ContactUsModule {
|
|
|
|
}
|