layout.tsx (346B)
1 import type { ReactNode } from "react" 2 import { Suspense } from "react" 3 4 export default async function DashboardLayout({ 5 children, 6 }: { 7 children: ReactNode 8 }) { 9 return ( 10 <Suspense fallback={<div className="flex h-screen w-full items-center justify-center">Loading...</div>}> 11 {children} 12 </Suspense> 13 ) 14 }