How to pass dynamic data in select?
const array=['a','b','c','d']
<Select data={array}
selectedIndex={selectedIndex}
onSelect={index => setSelectedIndex(index)}>
</Select>
Whenever i use
<SelectItem title='Option 1'/>
<SelectItem title='Option 2'/>
<SelectItem title='Option 3'/>
it is working fine but when I am using data its not working
This might help