'use client' interface ContextMenuProps { isDark: boolean contextMenu: { x: number; y: number; messageId: string } currentConversationId: string | null deleteMessage: (convId: string, msgId: string) => void onClose: () => void } export function ContextMenu({ isDark, contextMenu, currentConversationId, deleteMessage, onClose }: ContextMenuProps) { return (
) }