if u try use hooks.. its do not works.
Ex:
const [price, setPrice] = useState('');
<CurrencyInput
decimalSeparator=","
thousandSeparator="."
prefix="R$ "
onChangeEvent={(event, maskedvalue, floatvalue) =>
setPrice(floatvalue)
}
/>
the input keep reseting...
can someone try fix this?