Add 404 page
[oweals/peertube.git] / client / src / app / +page-not-found / page-not-found-routing.module.ts
1 import { NgModule } from '@angular/core'
2 import { RouterModule, Routes } from '@angular/router'
3 import { PageNotFoundComponent } from './page-not-found.component'
4
5 const pageNotFoundRoutes: Routes = [
6   {
7     path: '',
8     component: PageNotFoundComponent,
9   }
10 ]
11
12 @NgModule({
13   imports: [ RouterModule.forChild(pageNotFoundRoutes) ],
14   exports: [ RouterModule ]
15 })
16 export class PageNotFoundRoutingModule {}