10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-notfound',
|
|
templateUrl: './app.notfound.component.html',
|
|
})
|
|
export class AppNotfoundComponent {
|
|
|
|
}
|