vision-agent / components /chat /ChatDataLoad.tsx
MingruiZhang's picture
Minor things: revalidate cache, table css, card title (#16)
973f0d8 unverified
raw
history blame
277 Bytes
import { getKVChat } from '@/lib/kv/chat';
import { Chat } from '.';
export interface ChatDataLoadProps {
chatId: string;
}
export default async function ChatDataLoad({ chatId }: ChatDataLoadProps) {
const chat = await getKVChat(chatId);
return <Chat chat={chat} />;
}