2025-09-28 01:59:16 -06:00
|
|
|
import RegisterAlta from "@/app/Components/Alta/registerAlta";
|
|
|
|
|
|
2025-09-26 16:56:07 -06:00
|
|
|
import "./style.css";
|
2025-09-02 19:50:17 -04:00
|
|
|
|
2026-01-23 14:57:17 -06:00
|
|
|
export default async function Page(props: {
|
|
|
|
|
searchParams?: Promise<{
|
|
|
|
|
numAcount: string;
|
|
|
|
|
}>;
|
|
|
|
|
}) {
|
2025-09-28 01:59:16 -06:00
|
|
|
const params = await props.searchParams;
|
2026-01-23 14:57:17 -06:00
|
|
|
const numAcount = params?.numAcount ? params.numAcount : null;
|
|
|
|
|
|
2025-09-02 19:50:17 -04:00
|
|
|
return (
|
2025-09-03 20:41:25 -04:00
|
|
|
<section className="containerSection">
|
2025-10-14 17:18:18 -06:00
|
|
|
<h1 className="title">ALTA USUARIO</h1>
|
2025-09-02 19:50:17 -04:00
|
|
|
|
2026-01-23 14:57:17 -06:00
|
|
|
<RegisterAlta numCount={numAcount}/>
|
2025-09-24 16:22:31 -06:00
|
|
|
</section>
|
2025-09-02 19:50:17 -04:00
|
|
|
);
|
|
|
|
|
}
|
2025-09-24 16:22:31 -06:00
|
|
|
//IO
|