]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+page-not-found/page-not-found.module.ts
Add reason when banning a user
[github/Chocobozzz/PeerTube.git] / client / src / app / +page-not-found / page-not-found.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedModule } from '../shared'
3 import { PageNotFoundComponent } from '@app/+page-not-found/page-not-found.component'
4 import { PageNotFoundRoutingModule } from '@app/+page-not-found/page-not-found-routing.module'
5
6 @NgModule({
7 imports: [
8 PageNotFoundRoutingModule,
9 SharedModule
10 ],
11
12 declarations: [
13 PageNotFoundComponent
14 ],
15
16 exports: [
17 PageNotFoundComponent
18 ],
19
20 providers: []
21 })
22 export class PageNotFoundModule { }