2017-04-13 14:24:23 +03:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
2017-04-14 18:28:27 +03:00
|
|
|
selector: 'dashboard',
|
2017-04-21 17:23:44 +03:00
|
|
|
template: `
|
|
|
|
|
<p>
|
|
|
|
|
dashboard works!
|
|
|
|
|
</p>
|
|
|
|
|
`,
|
2017-04-13 14:24:23 +03:00
|
|
|
})
|
|
|
|
|
export class DashboardComponent {
|
|
|
|
|
}
|