]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+signup/shared/signup-shared.module.ts
Move zxx to its own group in select-languages component (#4664)
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / shared / signup-shared.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedMainModule } from '@app/shared/shared-main'
3 import { SignupSuccessComponent } from './signup-success.component'
4 import { SharedFormModule } from '@app/shared/shared-forms'
5 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6
7 @NgModule({
8 imports: [
9 SharedMainModule,
10 SharedFormModule,
11 SharedGlobalIconModule
12 ],
13
14 declarations: [
15 SignupSuccessComponent
16 ],
17
18 exports: [
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22
23 SignupSuccessComponent
24 ],
25
26 providers: [
27 ]
28 })
29 export class SignupSharedModule { }