blob: 2d1091ce2f66598b3123aaabc4dcda32384aca2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.sass']
})
export class PageNotFoundComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
|