import "./index.css"; import { motion } from "framer-motion"; import { ChevronDown } from "lucide-react"; import { useState } from "react"; interface PlanProps { toolCallId: string; executedPlans: string[]; rejectedPlans: string[]; remainingPlans: string[]; } export default function Plan(props: PlanProps) { const [isExpanded, setIsExpanded] = useState(false); return (
{index + 1}. {step}
))}{step}
))}{step}
))}