import { Button } from "@/components/ui/button"; import "./index.css"; import ReactMarkdown from "react-markdown"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { coldarkDark } from "react-syntax-highlighter/dist/cjs/styles/prism"; interface ProposedChangeProps { toolCallId: string; change: string; planItem: string; } export default function ProposedChange(props: ProposedChangeProps) { const handleReject = () => {}; const handleAccept = () => {}; return (

Proposed Change

) : ( {children} ); }, }} />
); }