import * as React from 'react'; import { TextInput, View } from 'react-native'; import InputCurrencyProps from './InputCurrencyProps'; import { useState } from 'react'; export default React.forwardRef((props, ref) => { const [textValue, setTextValue] = useState(''); console.log(props); return ( ); });