vision-agent / components /ChatSelectServer.tsx
MingruiZhang's picture
feat: Chat selector in Header (#59)
009c95b unverified
import { dbGetMyChatList } from '@/lib/db/functions';
import ChatSelect from './ChatSelect';
export default async function ChatSelectServer() {
const [myChats] = await Promise.all([dbGetMyChatList()]);
return <ChatSelect myChats={myChats} />;
}