vision-agent / components /chat-sidebar /ChatListSidebar.tsx
MingruiZhang's picture
Fix deployment + Chat id pages (#5)
d0a1b70 unverified
raw
history blame
349 Bytes
import { getKVChats } from '@/lib/kv/chat';
import ChatCard from './ChatCard';
export interface ChatSidebarListProps {}
export default async function ChatSidebarList({}: ChatSidebarListProps) {
const chats = await getKVChats();
return (
<>
{chats.map(chat => (
<ChatCard key={chat.id} chat={chat} />
))}
</>
);
}