import React from "react"; import { Platform, TextInput, type TextInputProps, TouchableOpacity, } from "react-native"; export function Input(props: TextInputProps) { const { style, ...otherProps } = props; const inputRef = React.useRef(null); return Platform.isTV ? ( inputRef?.current?.focus?.()}> ) : ( ); }