Spaces:
Sleeping
Sleeping
interface ChatLayoutProps { | |
children: React.ReactNode; | |
} | |
export default async function Layout({ children }: ChatLayoutProps) { | |
// return <Suspense fallback={<Loading />}>{children}</Suspense>; | |
return children; | |
} | |