]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+signup/+register/register.module.ts
Handle input error in custom input text
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / +register / register.module.ts
1 import { CdkStepperModule } from '@angular/cdk/stepper'
2 import { NgModule } from '@angular/core'
3 import { SharedSignupModule } from '@app/+signup/shared/shared-signup.module'
4 import { SharedInstanceModule } from '@app/shared/shared-instance'
5 import { SharedMainModule } from '@app/shared/shared-main'
6 import { CustomStepperComponent } from './custom-stepper.component'
7 import { RegisterRoutingModule } from './register-routing.module'
8 import { RegisterComponent } from './register.component'
9 import { RegisterStepAboutComponent, RegisterStepChannelComponent, RegisterStepTermsComponent, RegisterStepUserComponent } from './steps'
10
11 @NgModule({
12 imports: [
13 SharedMainModule,
14 RegisterRoutingModule,
15
16 CdkStepperModule,
17
18 SharedSignupModule,
19
20 SharedInstanceModule
21 ],
22
23 declarations: [
24 RegisterComponent,
25 CustomStepperComponent,
26 RegisterStepChannelComponent,
27 RegisterStepTermsComponent,
28 RegisterStepUserComponent,
29 RegisterStepAboutComponent
30 ],
31
32 exports: [
33 RegisterComponent
34 ],
35
36 providers: [
37 ]
38 })
39 export class RegisterModule { }