Files
Makers3D/apps/web/app/profile/page.tsx
T

10 lines
207 B
TypeScript

import ProfileClient from "../components/ProfileClient";
export default function ProfilePage() {
return (
<main className="page-shell profile-account-page">
<ProfileClient />
</main>
);
}