Files
bizmatch-project/bizmatch/src/app/components/not-found/not-found.component.ts

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 {}