]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
b247a132 1import { NgModule } from '@angular/core'
67ed6552
C
2import { SharedMainModule } from '@app/shared/shared-main'
3import { SignupSuccessComponent } from './signup-success.component'
4import { SharedFormModule } from '@app/shared/shared-forms'
5import { SharedGlobalIconModule } from '@app/shared/shared-icons'
b247a132
C
6
7@NgModule({
8 imports: [
67ed6552
C
9 SharedMainModule,
10 SharedFormModule,
11 SharedGlobalIconModule
b247a132
C
12 ],
13
14 declarations: [
15 SignupSuccessComponent
16 ],
17
18 exports: [
67ed6552
C
19 SharedMainModule,
20 SharedFormModule,
21 SharedGlobalIconModule,
22
b247a132
C
23 SignupSuccessComponent
24 ],
25
26 providers: [
27 ]
28})
29export class SignupSharedModule { }