| gio | 678746b | 2025-07-06 14:45:27 +0000 | [diff] [blame^] | 1 | import React from "react"; |
| 2 | import { AgentAccess } from "config"; | ||||
| 3 | |||||
| 4 | export function Agent({ agent }: { agent: AgentAccess }): React.ReactNode { | ||||
| 5 | return <iframe key={agent.name} src={`${agent.address}?m`} title={agent.agentName} className="w-full h-full" />; | ||||
| 6 | } | ||||