I have a react JS file and I\'m attempting to bind data to a dropdown list. The data is stored in the following testing API/json file: https://api.myjson.com/bins/okuxu ...I wan
Though your question is not clear, I assume you want to populate the api data into the respective dropdown
To populate data into the respective dropdown list
this.state.data.map((obj) => {obj.clientName} ); this.state.data.map((obj) => {obj.siteName} ); this.state.data.map((obj) => {obj.segmentName} );