We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
className
is_nativepicker
list
objects
text
value
array|object
name
onChange
type
number|string
const list = [ { text: 'Apple', value: 'apple', }, { text: 'Orange', value: 'orange', } ]; let value = ''; function onChange(e) { value = e.target.value; } <Dropdown name='fruits' list={list} value={value} onChange={onChange} is_nativepicker={false} />