organizee-front/src/app/pages/page-not-found/page-not-found.component.ts

16 lines
306 B
TypeScript
Raw Normal View History

2022-01-18 17:12:04 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss']
})
export class PageNotFoundComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}