]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/reset-password/reset-password.module.ts
Fix scroll menu on touch devices
[github/Chocobozzz/PeerTube.git] / client / src / app / reset-password / reset-password.module.ts
1 import { NgModule } from '@angular/core'
2
3 import { ResetPasswordRoutingModule } from './reset-password-routing.module'
4 import { ResetPasswordComponent } from './reset-password.component'
5 import { SharedModule } from '../shared'
6
7 @NgModule({
8 imports: [
9 ResetPasswordRoutingModule,
10 SharedModule
11 ],
12
13 declarations: [
14 ResetPasswordComponent
15 ],
16
17 exports: [
18 ResetPasswordComponent
19 ],
20
21 providers: [
22 ]
23 })
24 export class ResetPasswordModule { }