// Angular Core
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ReactiveFormsModule } from '@angular/forms';

// Modules
import { SharedModule } from 'src/app/shared-module/shared-module.module';
import { ManageAccountRoutingModule } from './manage-account-routing.module';

// Components
import { ManageAccountComponent } from './components/manage-account/manage-account.component';
import { DatePickerModule } from 'primeng/datepicker';
import { ConfirmContactMethodPopupComponent } from './components/confirm-contact-method-popup/confirm-contact-method-popup.component';


@NgModule({
  declarations: [
    ManageAccountComponent,
    ConfirmContactMethodPopupComponent,
  ],
  imports: [
    CommonModule,
    SharedModule,
    ReactiveFormsModule,
    ManageAccountRoutingModule,
    DatePickerModule
  ]
})
export class ManageAccountModule { }
