vision-agent / app /chat /layout.tsx
MingruiZhang's picture
feat: DB change - combine user and assistant message (#70)
a1c5622 unverified
raw
history blame contribute delete
No virus
219 Bytes
interface ChatLayoutProps {
children: React.ReactNode;
}
export default async function Layout({ children }: ChatLayoutProps) {
// return <Suspense fallback={<Loading />}>{children}</Suspense>;
return children;
}