angular/aio/content/examples/router/src/app/not-found.component.ts
2017-03-28 10:21:46 +01:00

8 lines
150 B
TypeScript

// #docregion
import { Component } from '@angular/core';
@Component({
template: '<h2>Page not found</h2>'
})
export class PageNotFoundComponent {}