import { Button } from '@/components/ui/button'; import { useNavigatePage } from '@/hooks/logic-hooks/navigate-hooks'; import { ArrowLeft } from 'lucide-react'; import { Outlet } from 'umi'; import { SideBar } from './sidebar'; export default function ProfileSetting() { const { navigateToHome } = useNavigatePage(); return (

Profile & settings

{/*

{title}

*/}
); }