| import React from "react"; | |
| import { AgentAccess } from "config"; | |
| export function Agent({ agent }: { agent: AgentAccess }): React.ReactNode { | |
| return <iframe key={agent.name} src={`${agent.address}?m`} title={agent.agentName} className="w-full h-full" />; | |
| } |