import { Suspense } from 'react' export const unstable_instant = { prefetch: 'static' } export default function StaticLayout({ children }) { return (

The layout wraps children with Suspense.


Loading...
}>{children} ) }