graycoreio/daffodil

View on GitHub
apps/demo/src/app/misc/not-found/not-found.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
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';
}