mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-11 16:12:35 +01:00
26 lines
733 B
TypeScript
26 lines
733 B
TypeScript
import {Component, ViewEncapsulation} from 'angular2/core';
|
|
|
|
import {PopularApp} from './popularApp';
|
|
import {PieChart} from './pieChart';
|
|
import {TrafficChart} from './trafficChart';
|
|
import {UsersMap} from './usersMap';
|
|
import {LineChart} from './lineChart';
|
|
import {Feed} from './feed';
|
|
import {Todo} from './todo';
|
|
import {Calendar} from './calendar';
|
|
import {BaCard} from '../../theme/components';
|
|
|
|
@Component({
|
|
selector: 'dashboard',
|
|
pipes: [],
|
|
directives: [PopularApp, PieChart, TrafficChart, UsersMap, LineChart, Feed, Todo, Calendar, BaCard],
|
|
encapsulation: ViewEncapsulation.None,
|
|
styles: [require('./dashboard.scss')],
|
|
template: require('./dashboard.html')
|
|
})
|
|
export class Dashboard {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
}
|