interface SimpleProgressProps { current: number total: number score: { correct: number; total: number } } export function SimpleProgress({ current, total, score }: SimpleProgressProps) { const progress = (current - 1) / total * 100 const accuracy = score.total > 0 ? Math.round((score.correct / score.total) * 100) : 0 return (