blob: 9092c6b4fac64c4e805d59c16772323bad2850da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import { NgModule } from '@angular/core'
import { VerifyAccountRoutingModule } from '@app/+verify-account/verify-account-routing.module'
import { VerifyAccountEmailComponent } from '@app/+verify-account/verify-account-email/verify-account-email.component'
import {
VerifyAccountAskSendEmailComponent
} from '@app/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component'
import { SharedModule } from '@app/shared'
@NgModule({
imports: [
VerifyAccountRoutingModule,
SharedModule
],
declarations: [
VerifyAccountEmailComponent,
VerifyAccountAskSendEmailComponent
],
exports: [
],
providers: [
]
})
export class VerifyAccountModule { }
|