aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+page-not-found/page-not-found-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+page-not-found/page-not-found-routing.module.ts')
-rw-r--r--client/src/app/+page-not-found/page-not-found-routing.module.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/client/src/app/+page-not-found/page-not-found-routing.module.ts b/client/src/app/+page-not-found/page-not-found-routing.module.ts
new file mode 100644
index 000000000..43f7d7337
--- /dev/null
+++ b/client/src/app/+page-not-found/page-not-found-routing.module.ts
@@ -0,0 +1,16 @@
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3import { PageNotFoundComponent } from './page-not-found.component'
4
5const pageNotFoundRoutes: Routes = [
6 {
7 path: '',
8 component: PageNotFoundComponent,
9 }
10]
11
12@NgModule({
13 imports: [ RouterModule.forChild(pageNotFoundRoutes) ],
14 exports: [ RouterModule ]
15})
16export class PageNotFoundRoutingModule {}