how do I get the selected item ID when clicking the suggested item?
below is my data structure. how do i get the ID instead of label?
[
{ id: 1, label: 'Label 1'},
{ id: 2, label: 'Label 2'}
{ id: 3, label: 'Label 3}
]
This is my component.
<AutoComplete
data={results}
textField="label"
onChange={onChange}
onBlur={onClose}
placeholder="Search "
value={keyword}
/>