From fc6cf6169868e60c189e4b243330c3717ff159f3 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 26 May 2022 13:58:07 +0200 Subject: ... --- .../src/app/page-not-found/page-not-found.component.html | 5 +++++ .../src/app/page-not-found/page-not-found.component.sass | 0 .../src/app/page-not-found/page-not-found.component.ts | 15 +++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 overlays/spm/frontend/src/app/page-not-found/page-not-found.component.html create mode 100644 overlays/spm/frontend/src/app/page-not-found/page-not-found.component.sass create mode 100644 overlays/spm/frontend/src/app/page-not-found/page-not-found.component.ts (limited to 'overlays/spm/frontend/src/app/page-not-found') diff --git a/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.html b/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.html new file mode 100644 index 00000000..26a283ed --- /dev/null +++ b/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.html @@ -0,0 +1,5 @@ +
+

+ No Such Component +

+
diff --git a/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.sass b/overlays/spm/frontend/src/app/page-not-found/page-not-found.component.sass new file mode 100644 index 00000000..e69de29b 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 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-page-not-found', + templateUrl: './page-not-found.component.html', + styleUrls: ['./page-not-found.component.sass'] +}) +export class PageNotFoundComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} -- cgit v1.2.3