"use client"; // This is a placeholder component for the force-directed graph // In a real implementation, you would use a library like D3.js or react-force-graph interface ForceDirectedGraphProps { runId: number | null; } export default function ForceDirectedGraph({ runId }: ForceDirectedGraphProps) { if (!runId) { return (