src/app/404/404.component.ts
selector | app-not-found |
template |
|
import { Component } from '@angular/core';
@Component({
selector: 'app-not-found',
template: `<h1>404 Page Not Found</h1>`
})
export class NotFoundComponent {}