selectで動的データを渡す方法は?
const array=['a','b','c','d']
<Select data={array}
selectedIndex={selectedIndex}
onSelect={index => setSelectedIndex(index)}>
</Select>
私が使うたびに
<SelectItem title='Option 1'/>
<SelectItem title='Option 2'/>
<SelectItem title='Option 3'/>
正常に動作していますが、データを使用しているときは動作しません