Ahmad Shallouf
added new modifications
27e40c0
raw
history blame contribute delete
307 Bytes
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 {
}