import { Suspense } from 'react' export default async function Layout({ children, slot }) { return ( <> slot {slot} children {children} > ) }