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

Code Plan

Remaining Plans

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

{index + 1}. {step}

))}

Executed Plans

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

{step}

))}

Rejected Plans

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

{step}

))}
); }