import { useEffect, useRef } from 'react'; const TextInput = ({ isTyping, textInputRef, textInput, setTextInput, handleTextInput, textPosition }) => { if (!isTyping) { return null; } return (