14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import ChangePassword from "../Components/ChangePassword/changePassword";
|
|
import SearchUser from "../Components/SearchUser/searchUser";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<section className='containerSection'>
|
|
<h2 className='title'> Cambiar contraseña </h2>
|
|
|
|
<ChangePassword/>
|
|
</section>
|
|
|
|
);
|
|
}
|
|
//IO
|