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