| 1 | interface ProgressBarProps { |
| 2 | currentStep: number; |
| 3 | totalSteps: number; |
| 4 | } |
| 5 | |
| 6 | export default function ProgressBar({currentStep, totalSteps}: ProgressBarProps) { |
| 7 | const progress = (currentStep / totalSteps) * 100; |
nothing calls this directly
no outgoing calls
no test coverage detected