If I have the following json data, How can I populate Bird_Name in the dropdown list with semantic?
Note: I'm using react with es6.
var birds = [
{
"ID": "001",
"Bird_Name": "Eurasian Collared-Dove"
},
{
"ID": "002",
"Bird_Name": "Bald Eagle"
},
{
"ID": "003",
"Bird_Name": "Cooper's Hawk"
},
];
Semantic dropdown
<Container>
<Divider hidden />
<Dropdown
placeholder='Select...'
selection
search
options={options}
/>
</Container>