import React from "react"; import { Button } from "@/components/ui/button"; import { FileText, Upload } from "lucide-react"; import { useAgentGraph } from "@/context/AgentGraphContext"; export function UnifiedButtonSection() { const { actions } = useAgentGraph(); const handleExampleTraces = () => { actions.setActiveView("example-traces"); }; const handleUploadTrace = () => { actions.setActiveView("upload"); }; return ( <> ); }