Project

General

Profile

recomendaciones.component.html

antonella butron, 01/06/2026 11:13 AM

Download (589 Bytes)

 
1
<div class="titulo-wrapper">
2
  <h1>Recomendaciones</h1>
3
</div>
4

    
5
<div class="frame">
6
  <label>Gravedad: {{gravedad}}</label>
7
</div>
8

    
9
<div class="frame">
10
  <div [ngSwitch]="opcionSeleccionada">
11
  <div *ngSwitchCase="'uno'">
12
    <div *ngFor="let label of labelsUno" class="tarjeta-label">{{ label }}</div>
13
  </div>
14
  <div *ngSwitchCase="'dos'">
15
    <div *ngFor="let label of labelsDos" class="tarjeta-label">{{ label }}</div>
16
  </div>
17
  <div *ngSwitchCase="'tres'">
18
    <div *ngFor="let label of labelsTres" class="tarjeta-label">{{ label }}</div>
19
  </div>
20
</div>
21
</div>