Add explicit step and aria-current attribute in register form
[oweals/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 { }