Skip to content

@pgege/kaboo-react


Function: ActivityPanel()

ActivityPanel(): Element | null

Defined in: components/ActivityPanel.tsx:26

Standalone panel that renders the current activity tree as a list of AgentCards — top-level groups at the root, or the drilled-in group's children. Use it when you want the hierarchical activity view outside the chat transcript (the in-chat view is handled by KabooMessageView). Renders nothing when there is no activity.

Returns

Element | null

Example

import { ActivityPanel } from "@pgege/kaboo-react";

function Sidebar() {
  return (
    <aside>
      <ActivityPanel />
    </aside>
  );
}