"use client" import { MessageSquareMore } from 'lucide-react' export type Interaction = { id: string; type: string; time: string; note?: string } export default function InteractionsList({ items }: { items: Interaction[] }) { if (!items?.length) return
暂无互动记录
return ( ) }