import { Component } from '@angular/core'; @Component({ selector: '', templateUrl: './page-not-found.html', styleUrls: ['./page-not-found.css'] }) export class PageNotFound { constructor() { } back(e: Event) { e.preventDefault(); window.history.back(); // window.history.back(); } }