import { ContentSkeleton } from '@admin/components/layouts/content-skeleton'
import { Suspense } from 'react'
import { AccountShell } from './account-shell'
export default function AccountLayout({ children }: { children: React.ReactNode }) {
return (
}>
{children}
)
}