import React from 'react'; const ProgressBar = ({ currentChunkIndex, totalChunks, onChunkClick = null // Optional: allow clicking on progress bar segments }) => { const progressPercentage = totalChunks > 0 ? ((currentChunkIndex +1) / totalChunks) * 100 : 0; return (