I am currently receiving data from Spotify via Search API. But, I don't know how to handle multiple objects.
I am currently, able to: response.data.albums.items
and then map((item) => { });
Is there a way to render all of them, Albums, Artists, and Tracks?
Render to an <ul><li></li></ul>
.
** seems impossible, so I am able to only render one of them: *response.data.albums.items*. – Nov 10 '20 at 18:14