bstlboard-front/src/app/pages/notfound/notfound.page.ts

15 lines
231 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'page-notfound',
templateUrl: './notfound.page.html'
})
export class PageNotFound implements OnInit {
constructor() { }
ngOnInit(): void {
}
}