Пытаюсь разобраться в vk mini apps, хочу выводить данные из бд в приложение. Отправляю запрос на node js:
const data = async function getUser() {
let response = await fetch('http://localhost:3000/user_info?user_id=1', {
method: 'GET',
headers: {
'Accept': 'application/json',
},
});
return response.text();
}
Но мне выводит следующую ошибку в приложении:
Objects are not valid as a React child (found: [object Promise]). If you meant to render a collection of children, use an array instead.
Как ее можно решить?