blob: 9f69e81b621257384621c3b934d777ac46bb4cfc [file] [log] [blame]
Matteo Scandolofc4b37b2017-02-02 12:18:47 -08001class DashboardExtensionComponent {
2 static $inject = ['XosSidePanel'];
3
4 constructor(
5 private XosSidePanel: any
6 ) {
7 }
8}
9
10export const xosDashboardExtensionComponent: angular.IComponentOptions = {
11 template: require('./dashboard-extension.html'),
12 controllerAs: 'vm',
13 controller: DashboardExtensionComponent
14};