Using axios, I am downloading backend structure data.
The data is structured as advancedProfile.technologies (an array with 5 objects) with keys {title, link, category, date, id}.
Afterwards, I am rendering divs using the map function.
The code line looks like this:
{download.data.advancedProfile.technologies.map(obj=><div>{obj.title}</div>)}
Although this line allows me to render all 5 objects from the array, it only displays one key value at a time.
Is there a way for me to map and display all 5 objects with all keys at once, without having to manually input each key value separately?