AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import { Suspense } from 'react'
export default async function Layout({
children,
params,
}: {
children: React.ReactNode
params: Promise<{ top: string }>
}) {
await params
return <Suspense fallback={<div>Loading...</div>}>{children}</Suspense>
}