eeg_certs/frontend/src/certs/NewRegister/RegisterPresets.tsx

19 lines
566 B
TypeScript
Raw Normal View History

2023-08-25 22:54:30 +00:00
import { Chip } from "../../components/Chip";
export function RegisterPresets() {
return (
<div class="h-52">
<p>Las fechas se colocan automáticamente según la duración del curso.</p>
<br />
<div class="flex flex-wrap gap-2">
<Chip text="2 Matpel" />
<Chip text="3 Matpel" />
<Chip text="4 Escolta" />
<Chip text="MD, 2 Matpel" />
<Chip text="3 4x4" />
<Chip text="2 4x4" />
</div>
</div>
);
}