travopti/frontend/src/app/containers/notfound/notfound.component.ts
2020-05-24 15:11:54 +02:00

16 lines
278 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() {
}
}