61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import BitacoraAlumno from "@/app/Components/Reportes/BitacoraSanciones/BitacoraAlumno";
|
|
import BitacoraEquipo from "@/app/Components/Reportes/BitacoraSanciones/BitacoraEquipo";
|
|
import BitacoraMesas from "@/app/Components/Reportes/BitacoraSanciones/BitacoraMesas";
|
|
import Sanciones from "@/app/Components/Reportes/BitacoraSanciones/Sanciones";
|
|
import Toggle from "@/app/Components/Global/Toggle/Toggle";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<section className="containerSection">
|
|
<h2 className="title"> BITACORA Y SANCIONES </h2>
|
|
|
|
<Toggle
|
|
defaultView="1"
|
|
options={[
|
|
{
|
|
key: "1",
|
|
label: "Bitacora equipo",
|
|
content: (
|
|
<>
|
|
<BitacoraEquipo />
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
key: "2",
|
|
label: "Bitacora alumno",
|
|
content: (
|
|
<>
|
|
<BitacoraAlumno />
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
key: "3",
|
|
label: "Bitacora mesas",
|
|
content: (
|
|
<>
|
|
<BitacoraMesas />
|
|
</>
|
|
),
|
|
},
|
|
{
|
|
key: "4",
|
|
label: "Sanciones",
|
|
content: (
|
|
<>
|
|
<Sanciones />
|
|
</>
|
|
),
|
|
},
|
|
]}
|
|
/>
|
|
</section>
|
|
);
|
|
}
|
|
//IO
|
|
|
|
// by Tyrannuss
|