diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-06-07 21:38:00 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-06-07 21:38:00 +0200 |
commit | 3bf77d7c3144b16d55f35998dddc0d67bb8c17b2 (patch) | |
tree | 805b343e50d733240b3dae8700d43060943b4dab /overlays/spm/frontend/src/app/page-not-found/page-not-found.module.ts | |
parent | fc6cf6169868e60c189e4b243330c3717ff159f3 (diff) | |
download | nixos-3bf77d7c3144b16d55f35998dddc0d67bb8c17b2.tar nixos-3bf77d7c3144b16d55f35998dddc0d67bb8c17b2.tar.gz nixos-3bf77d7c3144b16d55f35998dddc0d67bb8c17b2.tar.bz2 nixos-3bf77d7c3144b16d55f35998dddc0d67bb8c17b2.tar.xz nixos-3bf77d7c3144b16d55f35998dddc0d67bb8c17b2.zip |
...
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 {} | ||