summaryrefslogtreecommitdiff
path: root/overlays/spm/frontend/src/app/page-not-found
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/spm/frontend/src/app/page-not-found')
-rw-r--r--overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts b/overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts
new file mode 100644
index 00000000..b9d8945c
--- /dev/null
+++ b/overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts
@@ -0,0 +1,16 @@
1import { NgModule } from '@angular/core';
2import { PageNotFoundComponent } from './page-not-found.component';
3import { RouterModule } from '@angular/router';
4
5@NgModule({
6 declarations: [PageNotFoundComponent],
7 exports: [PageNotFoundComponent],
8 imports: [
9 RouterModule.forChild([{
10 path: '',
11 pathMatch: 'full',
12 component: PageNotFoundComponent
13 }]),
14 ]
15})
16export class PageNotFoundModule {}