mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 23:39:18 +00:00
17 lines
338 B
TypeScript
17 lines
338 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-page-not-found-page',
|
|
templateUrl: './page-not-found-page.component.html',
|
|
styleUrls: ['./page-not-found-page.component.css']
|
|
})
|
|
export class PageNotFoundPageComponent implements OnInit {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|