--- title: Select tags: components,input,beginner --- Renders a `` element. - Render a `` element. - Use destructuring on the `values` array to pass an array of `value` and `text` elements. ```jsx function Select({ values, callback, disabled = false, readonly = false, selected }) { return ( ); } let choices = [ ['grapefruit', 'Grapefruit'], ['lime', 'Lime'], ['coconut', 'Coconut'], ['mango', 'Mango'] ]; ReactDOM.render( console.log(val)} />, document.getElementById('root') ); ```