--- 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 const Select = ({ values, callback, disabled = false, readonly = false, selected }) => { return ( ); }; ``` ```jsx const choices = [ ['grapefruit', 'Grapefruit'], ['lime', 'Lime'], ['coconut', 'Coconut'], ['mango', 'Mango'] ]; ReactDOM.render(