Const
Accesses the current agent instance.
function AgentComponent() { const agent = useAgent(); // Use agent for interacting with the Internet Computer. return {agent.isLocal() ? 'Local' : 'Remote'}; } Copy
function AgentComponent() { const agent = useAgent(); // Use agent for interacting with the Internet Computer. return {agent.isLocal() ? 'Local' : 'Remote'}; }
Accesses the current agent instance.