sync from local backup
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user