Posts by Wellington Ribeiro • 1 point
1 post
-
-2
votes2
answers44
viewsA: Taking values from an Input Array in React
In the case of onChange you would have to pass an anonymous function to receive this value from input: const [inputValue, setInputValue] = useState(''); <input onChange={(event) =>…