vision-agent-landing / components /ChatSelectServer.tsx
wuyiqun0718's picture
update
159e7fa
raw
history blame contribute delete
No virus
251 Bytes
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} />;
}