mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
import {Component, ViewEncapsulation} from 'angular2/core';
|
|
|
|
import {PopularApp} from './popularApp';
|
|
import {BaPanel} from '../../theme';
|
|
|
|
|
|
@Component({
|
|
selector: 'dashboard',
|
|
pipes: [],
|
|
directives: [PopularApp, BaPanel],
|
|
encapsulation: ViewEncapsulation.None,
|
|
styles: [require('./dashboard.scss')],
|
|
template: require('./dashboard.html')
|
|
})
|
|
export class Dashboard {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
}
|