2020-10-05 15:15:33 +02:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {RoleVerificationComponent} from "./role-verification.component";
|
|
|
|
import {AlertModalModule} from "../utils/modal/alertModal.module";
|
|
|
|
import {ReactiveFormsModule} from "@angular/forms";
|
|
|
|
import {LoadingModule} from "../utils/loading/loading.module";
|
2020-11-12 18:57:32 +01:00
|
|
|
import {InputModule} from "../sharedComponents/input/input.module";
|
2020-10-05 15:15:33 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2020-11-12 18:49:20 +01:00
|
|
|
imports: [CommonModule, AlertModalModule, ReactiveFormsModule, LoadingModule, InputModule],
|
2020-10-05 15:15:33 +02:00
|
|
|
declarations: [RoleVerificationComponent],
|
|
|
|
exports: [RoleVerificationComponent]
|
|
|
|
})
|
|
|
|
export class RoleVerificationModule {}
|