@bobmatnyc/claude-pm-portfolio-manager
Version:
Claude PM Portfolio Management Dashboard - React-based monitoring and reporting for Claude PM managed projects
10 lines (9 loc) • 338 B
TypeScript
import { ActivityData } from '../../types/processTracker';
interface ActivityFeedProps {
data: ActivityData | null;
loading: boolean;
error: string | null;
maxItems?: number;
}
export default function ActivityFeed({ data, loading, error, maxItems }: ActivityFeedProps): import("react/jsx-runtime").JSX.Element;
export {};