2016-04-21 20:34:07 +03:00
|
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
2016-04-29 21:06:45 +03:00
|
|
|
|
|
|
|
|
import {PopularApp} from './popularApp';
|
2016-05-04 16:04:14 +03:00
|
|
|
import {PieChart} from './pieChart';
|
2016-05-04 17:18:09 +03:00
|
|
|
import {TrafficChart} from './trafficChart';
|
2016-05-04 19:08:05 +03:00
|
|
|
import {UsersMap} from './usersMap';
|
2016-05-04 19:37:58 +03:00
|
|
|
import {LineChart} from './lineChart';
|
2016-05-05 13:26:28 +03:00
|
|
|
import {Feed} from './feed';
|
2016-05-04 11:49:36 +03:00
|
|
|
import {BaCard} from '../../theme/components';
|
2016-05-02 14:13:41 +03:00
|
|
|
|
2016-04-21 20:34:07 +03:00
|
|
|
@Component({
|
2016-04-29 17:27:19 +03:00
|
|
|
selector: 'dashboard',
|
|
|
|
|
pipes: [],
|
2016-05-05 13:26:28 +03:00
|
|
|
directives: [PopularApp, PieChart, TrafficChart, UsersMap, LineChart, Feed, BaCard],
|
2016-04-29 17:27:19 +03:00
|
|
|
encapsulation: ViewEncapsulation.None,
|
|
|
|
|
styles: [require('./dashboard.scss')],
|
2016-04-29 21:06:45 +03:00
|
|
|
template: require('./dashboard.html')
|
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
|
|
|
}
|