blob: 9ed47d5d9ceb74c1004cdfb401dc8a1b9eb82110 [file] [log] [blame]
gio678746b2025-07-06 14:45:27 +00001import React from "react";
2import { AgentAccess } from "config";
3
4export 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}