Is this an example of two-way binding in React?
<input value={inputValue} onChange={(e) => setInputValue(e.target.value)} />
Yes, it is two-way binding
No, it is one-way binding
No, it is not binding
No, setInputValue is incorrect
This question is part of this quiz :
React Forms