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