Created
October 23, 2017 11:39
-
-
Save komkanit/d36ff8c5d2bed2885078f1d6957e7cc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onDropdownChange = (e) => { | |
this.setState({ | |
time: e.target.value, // ตาม option value | |
}); | |
} | |
<select | |
onChange={this.onDropdownChange} | |
value={this.state.time} | |
> | |
<option value={1} key={1}>1</option> | |
<option value={2} key={2}>2</option> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment