Commits
Davide Negretti authored 9ff075b23ec
1 1 | import { Component, Input } from '@angular/core'; |
2 2 | |
3 3 | import { HealthInfoComponent } from '../../models/health-component.model'; |
4 4 | import { HealthComponentComponent } from '../../health-panel/health-component/health-component.component'; |
5 5 | |
6 + | /** |
7 + | * Shows a health info object |
8 + | */ |
6 9 | @Component({ |
7 10 | selector: 'ds-health-info-component', |
8 11 | templateUrl: './health-info-component.component.html', |
9 12 | styleUrls: ['./health-info-component.component.scss'] |
10 13 | }) |
11 14 | export class HealthInfoComponentComponent extends HealthComponentComponent { |
12 15 | |
13 16 | /** |
14 17 | * The HealthInfoComponent object to display |
15 18 | */ |