I am trying to map over array of objects which each array contains another nested array of objects. However, the map does not work on the nested array. How do i map over the
Since each element has a content array, you must map over content as well.
content
map
Example
{dataItems.map((item, index) => ( {item.title} {item.content.map((c, i) => ( {c.title} {c.description} ))} ))}