9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-not-found',
|
|
standalone: true,
|
|
template: '<h2>Page not found</h2>',
|
|
})
|
|
export class NotFoundComponent {}
|