summaryrefslogtreecommitdiff
path: root/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts')
-rw-r--r--overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts b/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts
new file mode 100644
index 00000000..2d1091ce
--- /dev/null
+++ b/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts
@@ -0,0 +1,15 @@
1import { Component, OnInit } from '@angular/core';
2
3@Component({
4 selector: 'app-page-not-found',
5 templateUrl: './page-not-found.component.html',
6 styleUrls: ['./page-not-found.component.sass']
7})
8export class PageNotFoundComponent implements OnInit {
9
10 constructor() { }
11
12 ngOnInit(): void {
13 }
14
15}