JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container"></div>

JavaScript

var table = document.createElement('table'),
    tr = document.createElement('tr'),
    cells, i;
for (i = 0; i < 22; i++) { // Create an empty row
    tr.appendChild(document.createElement('td'));
}
for (i = 0; i < 10; i++) { // Add 10 copies of it to the table
    table.appendChild(tr.cloneNode(true));
}
cells = table.getElementsByTagName('td');
for (i = 0; i < 220; i++) {
    cells[i].innerHTML = i + 1;
}
document.getElementById('container').appendChild(table);