{ ru: 1000, en: 2000 }
.У меня сейчас есть такой запрос componentDidMount(){
axios.get('https://restcountries.eu/rest/v2/all')
.then(response => {
this.setState({
countriesData:response.data,
})
})
.catch((error) => {
console.log("error", error)
})
}
const data = response.data;
const result = Object.assign({}, ...Object.keys(data).map(k => ({[data[k].alpha2Code]: data[k].gini})));
// result = {AF: 27.8, AX: null, AL: 34.5, DZ: 35.3, AS: null, …}