import React from 'react'; import styles from '../styles/quiz.module.css'; interface ProgressBarProps { current: number; total: number; progress: number; } export const ProgressBar: React.FC = ({ current, total, progress }) => { return (
Progress {current + 1} / {total}
); };