I am using react-select and I don\'t want to hard code the options which should be displayed, but options is data I am fetching from an api. I can\'t really find anything and wh
Try this :
renderList() { return (this.state.responseData.map(data =>({label:data.Name,value:data.value}))) }
and Call :