Спасибо destus.
axios.get('http://ellenflare.com/loads/json')
.then(function (res) {
console.log(res.data)
});
const initialState = [
{
id: 1,
name: 'Enter Sandman'
},
{
id: 2,
name: 'The weekend'
}
];
Cуть вопроса в другом
Как я могу записать полученные данные с res во внешнюю константу initialState ?
|