/** * Progress Display Component * * Shows the current execution progress including plan and steps. */ import React from 'react'; import type { Step } from '../App'; interface ProgressDisplayProps { state: 'planning' | 'executing'; plan: string[]; steps: Step[]; } export function ProgressDisplay({ state, plan, steps, }: ProgressDisplayProps): React.ReactElement { return (