Created
January 27, 2017 06:32
-
-
Save dseg/1f13c155fcf7ef8f9f7cc12fa9e39fcd to your computer and use it in GitHub Desktop.
A React Select Snippet
This file contains 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
<select> | |
{ | |
// options が undefined or nullなら、何も出力しない。配列なら選択肢に整形する。 | |
options && Array.isArray(options) && options.map((item : any, idx : number) => | |
<option | |
key={`inq_opt_${idx}`} | |
value={item.value}>{item.label}</option>) | |
} | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment