This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/not-found/not-found.component.ts
RakVhalate d702e01f16
All checks were successful
continuous-integration/drone/push Build is passing
Did some
2022-11-29 22:31:55 +10:00

16 lines
286 B
TypeScript

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