Files
we_bstly-web/src/app/pages/notfound/notfound.component.ts
T
Lurkars b7b4e2d032 update
2020-11-02 08:29:52 +01:00

16 lines
284 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-notfound',
templateUrl: './notfound.component.html',
styleUrls: ['./notfound.component.scss']
})
export class NotfoundComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}