13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import React from "react";
|
|
import ChangePasswordCard from "@/pages/Profile/components/ChangePasswordCard";
|
|
import { useNavigate } from "react-router-dom";
|
|
|
|
const ChangePasswordPage: React.FC = () => {
|
|
const navigation = useNavigate();
|
|
|
|
return (
|
|
<ChangePasswordCard onBack={() => navigation("/profile")} />
|
|
);
|
|
};
|
|
|
|
export default ChangePasswordPage; |