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