Listing 8-13: Using a select input in React
function SizeSelect(props){
return(
<select name="size" value={props.size} onChange={props.changeSize}>
<option value="xs">Extra Small</option>
<option value="sm">Small</option>
<option vlue="md">Medium</option>
<option value="lg">Large</option>
<option value="xl">Extra Large</option>
</select>
);
}
export default SizeSelect;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.