import { useSimulationState } from '../../store/simulationStore'; function StatusRow({ label, active, activeText = 'Present', inactiveText = 'Missing' }) { return (
{label} {active ? activeText : inactiveText}
); } export default function EmergentCompression() { const { rejectedRun, chosenRun, rcaDocument, scenarioComplete } = useSimulationState(); return (
Evidence Checklist {scenarioComplete ? 'Scenario Complete' : 'In Progress'}

This panel only reflects captured run evidence. It does not infer training progress or fabricate optimization history.

); }