aswi2021codebakers-gitlab/src/app/dashboard/components/dashboard.component.html @ 2c5da396
1 |
<app-nav-bar></app-nav-bar>
|
---|---|
2 | |
3 |
<button (click)="getGroups()">GetGroups</button> |
4 |
<button (click)="getUnits()">GetUnits</button> |
5 | |
6 | |
7 |
{{ groups | json}} |
8 |
<div *ngFor="let unit of units"> |
9 |
<div *ngFor="let sensor of unit.sensors"> |
10 |
{{ sensor | json}} |
11 |
</div>
|
12 |
</div>
|
13 |