ngx-admin/src/app/pages/dashboard/dashboard.component.ts

25 lines
450 B
TypeScript
Raw Normal View History

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({
selector: 'dashboard',
pipes: [ ],
providers: [ ],
encapsulation: ViewEncapsulation.None,
styles: [require('./dashboard.scss') ],
template: 'DASHBOARD'
})
export class Dashboard {
constructor() {}
ngOnInit() {
console.log('DASHBOARD');
}
}