diff options
Diffstat (limited to 'overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts')
-rw-r--r-- | overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts | 16 |
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 @@ | |||
1 | import { NgModule } from '@angular/core'; | ||
2 | import { PageNotFoundComponent } from './page-not-found.component'; | ||
3 | import { 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 | }) | ||
16 | export class PageNotFoundModule {} | ||