]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+signup/+register/register.module.ts
Bidi support
[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 { SignupSharedModule } from '@app/+signup/shared/signup-shared.module'
4 import { SharedInstanceModule } from '@app/shared/shared-instance'
5 import { CustomStepperComponent } from './custom-stepper.component'
6 import { RegisterRoutingModule } from './register-routing.module'
7 import { RegisterStepChannelComponent } from './register-step-channel.component'
8 import { RegisterStepTermsComponent } from './register-step-terms.component'
9 import { RegisterStepUserComponent } from './register-step-user.component'
10 import { RegisterComponent } from './register.component'
11
12 @NgModule({
13 imports: [
14 RegisterRoutingModule,
15
16 CdkStepperModule,
17
18 SignupSharedModule,
19
20 SharedInstanceModule
21 ],
22
23 declarations: [
24 RegisterComponent,
25 CustomStepperComponent,
26 RegisterStepChannelComponent,
27 RegisterStepTermsComponent,
28 RegisterStepUserComponent
29 ],
30
31 exports: [
32 RegisterComponent
33 ],
34
35 providers: [
36 ]
37 })
38 export class RegisterModule { }