JSFiddle - React, Tailwind, and code Playground

HTML

<table id="myTable">
    <tbody></tbody>
</table>

CSS

TD {
    border:solid 1px grey;
}

JavaScript

jQuery(document).ready(function ($) {
     var table = $("#myTable");
     var myDate = new Date();
     myDate.setDate(myDate.getDate() - 1)
     for (var i = 0; i < 16; i++) {
         var row = $("<tr>");
         var cell = $("<td>");
         myDate.setDate(myDate.getDate() + 1)
         cell.text(myDate.getDate() + "/" + (myDate.getMonth() + 1) + "/" + myDate.getFullYear());
         row.append(cell);
         table.find('tbody').append(row);
     }
     $('#myTable').find('tr').each(function (i, v) {
         $(this).append('<td/><td/><td/>');
         $('td:not(:first)', this).text(i + 1);
     });
 });