Add basic routing & angular material, upgrade CLI version

This commit is contained in:
2017-05-25 20:51:10 -04:00
parent 38518e4ba5
commit e5b2d06d9c
11 changed files with 76 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
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 { }