2026-01-15 13:16:38 -06:00
|
|
|
import Inscripciones from "./Inscripciones";
|
|
|
|
|
|
2025-09-28 01:59:16 -06:00
|
|
|
export default async function Page(props: {
|
|
|
|
|
searchParams?: Promise<{
|
|
|
|
|
period: string;
|
|
|
|
|
}>;
|
|
|
|
|
}) {
|
|
|
|
|
const params = await props.searchParams;
|
|
|
|
|
const period = params?.period ? params.period : null;
|
|
|
|
|
|
2026-01-15 13:16:38 -06:00
|
|
|
return <Inscripciones />;
|
2025-09-03 20:41:25 -04:00
|
|
|
}
|
2025-09-29 15:37:56 -06:00
|
|
|
//IO
|