MCPcopy
hub / github.com/OpenHealthForAll/open-health / ProgressBarProps

Interface ProgressBarProps

src/components/onboarding/ProgressBar.tsx:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1interface ProgressBarProps {
2 currentStep: number;
3 totalSteps: number;
4}
5
6export default function ProgressBar({currentStep, totalSteps}: ProgressBarProps) {
7 const progress = (currentStep / totalSteps) * 100;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected