export default function ProcessingView({ job, onBack }) { return (

Processing {job.filename}

Running the 5-phase extraction pipeline...

{[ 'Table Detection', 'Structure Recognition', 'Text Detection', 'OCR Recognition', 'Cell Assignment', ].map((label, i) => (
{i + 1} {label}
))}

This typically takes 5–20 seconds depending on image complexity and hardware.

) }