JSFiddle - React, Tailwind, and code Playground
HTML
<table class="table">
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
JavaScript
var data= [
{"product":"RD0"},
{"product":"RD1-184"},
{"product":"RD1-185"}
];
$(function() {
$(".table").find('td').each(function(i) {
//$(this).text(data[i].product);
$(".table").insertRow(0).insertCell(0).innerHTML = data[i].product;
});
});