mirror of
https://github.com/Raghu-Ch/weirdbeard.life.git
synced 2026-02-10 04:33:02 -05:00
17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'wb-pagenotfound',
|
|
template: `
|
|
<p>
|
|
<md-icon class="warning">warning</md-icon><span class="spacer">Page not found!</span>
|
|
</p>
|
|
`,
|
|
styles: [`
|
|
.warning { font-size: 30px;}
|
|
.spacer { margin-left: 10px;}
|
|
`
|
|
]
|
|
})
|
|
export class PageNotFoundComponent { }
|