review-front/src/app/pages/not-found/not-found.component.ts

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