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