aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+verify-account/verify-account.module.ts
blob: 7255605d4eb95d83b3dbafb122404a35ac315455 (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
import { NgModule } from '@angular/core'
import { SignupSharedModule } from '../shared/signup-shared.module'
import { VerifyAccountAskSendEmailComponent } from './verify-account-ask-send-email/verify-account-ask-send-email.component'
import { VerifyAccountEmailComponent } from './verify-account-email/verify-account-email.component'
import { VerifyAccountRoutingModule } from './verify-account-routing.module'

@NgModule({
  imports: [
    VerifyAccountRoutingModule,

    SignupSharedModule
  ],

  declarations: [
    VerifyAccountEmailComponent,
    VerifyAccountAskSendEmailComponent
  ],

  exports: [],

  providers: []
})
export class VerifyAccountModule {
}