aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/reset-password/reset-password.module.ts
blob: c77f1c4b02ee33e7594a870c86c4d5ab1134219a (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
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedMainModule } from '@app/shared/shared-main'
import { ResetPasswordRoutingModule } from './reset-password-routing.module'
import { ResetPasswordComponent } from './reset-password.component'

@NgModule({
  imports: [
    ResetPasswordRoutingModule,

    SharedMainModule,
    SharedFormModule
  ],

  declarations: [
    ResetPasswordComponent
  ],

  exports: [
    ResetPasswordComponent
  ],

  providers: [
  ]
})
export class ResetPasswordModule { }