import { useRef } from "react"; export const useSelectOptionIndex = () => { const optionIndexRef = useRef(0); const setOptionIndex = (newIndex: number) => { optionIndexRef.current = newIndex; }; optionIndexRef.current = 0; return { optionIndexRef, setOptionIndex }; };