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