import { ChatStoreMessage } from "@/types/chatstore"; interface Props { chat: ChatStoreMessage; copyToClipboard: (text: string) => void; } export function MessageToolResp({ chat, copyToClipboard }: Props) { return (
{chat.content as string}