frontend_v2/src/app/components/not-found/not-found.component.ts
import { Component, OnInit } from '@angular/core';
/**
* Component Class
*/
@Component({
selector: 'app-not-found',
templateUrl: './not-found.component.html',
styleUrls: ['./not-found.component.scss'],
})
export class NotFoundComponent implements OnInit {
/**
* Constructor.
*/
constructor() {}
/**
* Component on intialized.
*/
ngOnInit() {}
}