JSFiddle - React, Tailwind, and code Playground

JavaScript

const dataExample = [{
    company: "Alfreds <b>Futterkiste</b>",
    chef: "Maria Anders",
    country: "Germany"
  },
  {
    company: "Centro commercial Moctezuma",
    chef: "Francisco Chang",
    country: "Mexica"
  },
  {
    company: "Ernst Hendel",
    chef: "Roland Mendel",
    country: "Australia"
  },
  {
    company: "Island Trading",
    chef: "Helen Bennett",
    country: "UK"
  },
  {
    company: "Laughing Bacchus Winecellars",
    chef: "Yoshi Tannamuri",
    country: "Canada"
  }
];
const res = dataExample.map(item => item.company + '<br>' + item.chef + '<br>' + item.country + '<br><br>');

document.body.innerHTML = res.join('');