I tried using onChange, onClick, and ref and none of those would work to give me the value of the option I selected
<select ref={input => { this.handleInput(input.value) } }>
<option value="1">Blah</option>
<option value="2">Blah2</option>
<option value="3">Blah3</option>
</select>
As you can see, input.value is showing me undefined. I don't know however else to get the option value, even changing ref to onChange and onClick didn't work
onChangeand use the first argumente, then accesse.target.value?