feat(dashboard): move status card to separate control, add tabs

This commit is contained in:
KostyaDanovsky 2017-06-13 20:27:11 +03:00
parent 2afb26810e
commit c483e46e71
7 changed files with 143 additions and 85 deletions

View file

@ -6,10 +6,4 @@ import { Component } from '@angular/core';
templateUrl: './dashboard.component.html',
})
export class DashboardComponent {
statusCards = [
{ title: 'Light', on: true, type: 'primary', icon: 'ion-ios-game-controller-b-outline' },
{ title: 'RollerShades', on: false, type: 'success', icon: 'ion-ios-game-controller-b-outline' },
{ title: 'Wireless Audio', on: true, type: 'info', icon: 'ion-ios-game-controller-b-outline' },
{ title: 'Coffee Maker', on: false, type: 'warning', icon: 'ion-ios-game-controller-b-outline' },
];
}