Add password modification.

This commit is contained in:
yoan
2024-08-28 14:36:11 +08:00
parent cf0f82793a
commit c3665cb1bb
6 changed files with 194 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
import { Toaster } from "@/components/ui/toaster";
import { Outlet } from "react-router-dom";
const SettingLayout = () => {
return (
<div>
<Toaster />
<div className="text-muted-foreground"></div>
<div className="w-full sm:w-[35em] mt-10 flex flex-col p-3">
{/* <div className="text-muted-foreground">
<span className="transition-all text-sm bg-gray-400 px-3 py-1 rounded-sm text-white cursor-pointer">
密码
</span>
</div> */}
<Outlet />
</div>
</div>
);
};
export default SettingLayout;