Programmer-RD-AI
Update Agent UI Verion
bbe4eea
raw
history blame contribute delete
380 Bytes
'use client'
import Sidebar from '@/components/chat/Sidebar/Sidebar'
import { ChatArea } from '@/components/chat/ChatArea'
import { Suspense } from 'react'
export default function Home() {
return (
<Suspense fallback={<div>Loading...</div>}>
<div className="flex h-screen bg-background/80">
<Sidebar />
<ChatArea />
</div>
</Suspense>
)
}