2016-04-21 20:34:07 +03:00
|
|
|
/*
|
|
|
|
|
* Angular 2 decorators and services
|
2016-04-20 19:46:27 +03:00
|
|
|
*/
|
2016-04-21 20:34:07 +03:00
|
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
|
|
|
|
/*
|
|
|
|
|
* App Component
|
|
|
|
|
* Top Level Component
|
|
|
|
|
*/
|
|
|
|
|
@Component({
|
2016-04-29 17:27:19 +03:00
|
|
|
selector: 'dashboard',
|
|
|
|
|
pipes: [],
|
|
|
|
|
providers: [],
|
|
|
|
|
encapsulation: ViewEncapsulation.None,
|
|
|
|
|
styles: [require('./dashboard.scss')],
|
|
|
|
|
template: 'DASHBOARD'
|
2016-04-21 20:34:07 +03:00
|
|
|
})
|
|
|
|
|
export class Dashboard {
|
|
|
|
|
|
2016-04-29 17:27:19 +03:00
|
|
|
constructor() {
|
|
|
|
|
}
|
2016-04-21 20:34:07 +03:00
|
|
|
|
2016-04-29 17:27:19 +03:00
|
|
|
ngOnInit() {
|
|
|
|
|
console.log('DASHBOARD');
|
|
|
|
|
}
|
2016-04-21 20:34:07 +03:00
|
|
|
|
2016-04-29 17:27:19 +03:00
|
|
|
}
|