fixing routes

This commit is contained in:
2025-09-12 18:12:38 -06:00
parent e0a1058231
commit 43375ef5f8
45 changed files with 220 additions and 177 deletions
@@ -13,10 +13,10 @@ function ProgramSelector({ titulo, opcion }: DatosEquipo) {
<div>
<form className="form-container">
{/* Label dinámico con el título que recibimos */}
<label htmlFor="equipo">{titulo}</label>
<label>{titulo}</label>
{/* Renderizamos UN solo <select> con varias <option> */}
<select id="equipo">
<select>
{opcion.map((op, index) => (
<option key={index} value={op}>
{op}
@@ -24,9 +24,6 @@ function ProgramSelector({ titulo, opcion }: DatosEquipo) {
))}
</select>
{/* Aquí puedes poner más <option> fijas si quieres */}
<option value="">Buscar</option>
{/* Lista de checkboxes (esto lo podrías optimizar igual con .map) */}
<div className="checkbox-grid">
<label>