import React from "react"; export const ExampleAgentButton = ({ name, children, setAgentRun, }: { name: string; children: string; setAgentRun?: (name: string, goal: string) => void; }) => { const handleClick = () => { if (setAgentRun) { setAgentRun(name, children); } }; return (

{name}

{children}

); };