import { Component, OnInit } from '@angular/core'; @Component({ moduleId: module.id, selector: 'page-not-found', templateUrl: 'page-not-found.html' }) export class PageNotFound implements OnInit { constructor() { } ngOnInit() { } }