Files
conve-x/src/app/account/[[...account]]/page.tsx
T

10 lines
188 B
TypeScript
Raw Normal View History

2023-09-09 20:05:10 -05:00
import { UserProfile } from '@clerk/nextjs';
export default function AccountPage() {
return (
<main className='flex flex-col items-center'>
<UserProfile />
</main>
);
}