16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
import { Component } from '@angular/core';
|
|
import {RouterLink} from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'app-not-found',
|
|
standalone: true,
|
|
imports: [
|
|
RouterLink
|
|
],
|
|
templateUrl: './not-found.component.html',
|
|
styleUrl: './not-found.component.css'
|
|
})
|
|
export class NotFoundComponent {
|
|
|
|
}
|