import { Suspense } from 'react' export default function Layout({ children }) { return (

Suspenseful Layout

{children}
) }