import { Component, OnInit } from '@angular/core'; @Component({ selector: 'pui-not-found', templateUrl: 'not-found.component.html' }) export class PageNotFoundComponent implements OnInit { constructor() { } ngOnInit() { } }