8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
template: '<h2>Page not found</h2>'
|
|
})
|
|
export class PageNotFoundComponent {}
|