]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+signup/shared/signup-shared.module.ts
Better spacing beetween comments
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / shared / signup-shared.module.ts
1 import { NgModule } from '@angular/core'
2 import { SignupSuccessComponent } from '../shared/signup-success.component'
3 import { SharedModule } from '@app/shared'
4
5 @NgModule({
6 imports: [
7 SharedModule
8 ],
9
10 declarations: [
11 SignupSuccessComponent
12 ],
13
14 exports: [
15 SignupSuccessComponent
16 ],
17
18 providers: [
19 ]
20 })
21 export class SignupSharedModule { }