apps/demo/src/app/misc/not-found/not-found.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'demo-not-found',
templateUrl: './not-found.component.html',
styleUrls: ['./not-found.component.scss'],
})
export class NotFoundComponent {
NOT_FOUND_TEXT = 'this page cannot be found: 404 error';
}