Files
HKSingleParty/03_source/frontend/src/pages/dashboard/user/profile.tsx
2025-05-28 23:17:04 +08:00

17 lines
386 B
TypeScript

import { CONFIG } from 'src/global-config';
import { UserProfileView } from 'src/sections/user/view';
// ----------------------------------------------------------------------
const metadata = { title: `User profile | Dashboard - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<UserProfileView />
</>
);
}