#How to render axios response data

10 messages · Page 1 of 1 (latest)

near drum
#

Hey, please I’m trying to request data from an api using axios but I don’t know how to render the data gotten in my ui

I NEED HELP😭!!!!

vapid bobcat
#

you don't need axios ?
just fetch inside the frontmatter

near drum
#

Okay let me try this!

near drum
vapid bobcat
#

I meant
like

---
YOUR FETCH IS HERE
---
<div>Here is Data</div>
#

ummmm
Let me simplify

---
const response = await fetch('Here is API endpoint');
const data = await response.json();
console.log(data)

---
<div>{data}</div>
near drum
#

Ohh okay