19 lines
566 B
TypeScript
19 lines
566 B
TypeScript
|
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>
|
||
|
);
|
||
|
}
|