24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
import ChangePassword from "@/app/Components/auth/ChangePassword/changePassword";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "CambiarPass",
|
|
};
|
|
|
|
export default async function Page(props: {
|
|
searchParams?: Promise<{
|
|
}>;
|
|
}) {
|
|
const params = await props.searchParams;
|
|
|
|
return (
|
|
<section className="containerSection">
|
|
|
|
<h2 className="title"> Cambiar contraseña </h2>
|
|
|
|
<ChangePassword />
|
|
</section>
|
|
);
|
|
}
|
|
//IO
|