| 4 | import {ImageJob} from '../types'; |
| 5 | |
| 6 | interface StatsPanelProps { |
| 7 | completedJobs: ImageJob[]; |
| 8 | onDownloadAll: () => void; |
| 9 | onDownloadZip: () => void; |
| 10 | onClearCompleted: () => void; |
| 11 | isZipping: boolean; |
| 12 | } |
| 13 | |
| 14 | export const StatsPanel: React.FC<StatsPanelProps> = ({ |
| 15 | completedJobs, |
nothing calls this directly
no outgoing calls
no test coverage detected