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

Plan

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

{index + 1}. {step}

))}
); }