blob: 9ed47d5d9ceb74c1004cdfb401dc8a1b9eb82110 [file] [log] [blame]
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" />;
}