import { FC, Suspense } from 'react'; import { Main } from '@/app/ui/Main'; import { AccountForm, AccountFormSkeleton } from '@/app/ui/AccountForm'; import { getUserProfile } from '@/app/lib/actions/userProfileActions'; const AccountPage: FC = async () => { const profile = await getUserProfile(); return (
); }; const Page: FC = () => { return (
}>
); }; export default Page;