const STEPS = ['Select Game', 'Configure Rules', 'Create Run'] interface StepIndicatorProps { currentStep: number onStepClick: (step: number) => void } export function StepIndicator({ currentStep, onStepClick }: StepIndicatorProps) { return ( ) }