| 27 | ]; |
| 28 | |
| 29 | interface GourceProgressProps { |
| 30 | currentStep: ProgressStep; |
| 31 | } |
| 32 | |
| 33 | export default function GourceProgress({ currentStep }: GourceProgressProps) { |
| 34 | const [progress, setProgress] = useState(0); |
nothing calls this directly
no outgoing calls
no test coverage detected