import "./index.css"; interface PlanProps { toolCallId: string; executedPlans: string[]; remainingPlans: string[]; } export default function Plan(props: PlanProps) { return (

Code Plan

Executed Plans

{props.executedPlans.map((step, index) => (

{index + 1}. {step}

))}

Remaining Plans

{props.remainingPlans.map((step, index) => (

{props.executedPlans.length + index + 1}. {step}

))}
); }