У менять есть функция
export const getNews = async () => {
let news;
try {
fetch(`https://newsapi.org/v2/top-headlines?country=us&apiKey='''''''''`)
.then(res => res.json())
.then(res => {
news = res;
})
} catch(e){
throw e;
}
return news;
};
Она делает запрос на сервер и получает новости (я проверял в консоль выводит)
Как мне вызвать правильно эту функция, и получить новости
getNews()
.then(result => {
console.log(result);
})
.catch(error => {
console.log(error);
});
У меня result выводит undifined