mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
16 lines
281 B
TypeScript
16 lines
281 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-not-found',
|
|
templateUrl: './not-found.component.html',
|
|
styleUrls: ['./not-found.component.scss']
|
|
})
|
|
export class NotFoundComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|