JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
<div class="container">
  <table class="table">
    <thead>
      <tr>
        <th>Product</th>
        <th>Price</th>
        <th>Time Left</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Automobile</td>
        <td>65 000</td>
        <td><span data-countdown="2018-07-11 12:00:00"></span></td>
      </tr>
      <tr>
        <td>Laptop</td>
        <td>4 000</td>
        <td><span data-countdown="2018-05-11 12:00:00"></span></td>
      </tr>
    </tbody>
  </table>
</div>

JavaScript

$('[data-countdown]').each(function() {
	var $this = $(this), finalDate = $(this).data('countdown');
  $this.countdown(finalDate)
  .on('update.countdown', function(event) {
    var format = '%H:%M:%S';
    if(event.offset.totalDays > 0) {
      format = '%-d day%!d ' + format;
    }
    if(event.offset.weeks > 0) {
      format = '%-w week%!w ' + format;
    }
    $(this).html(event.strftime(format));
  })
  .on('finish.countdown', function(event) {
    $(this).html('This offer has expired!')
      .parent().addClass('disabled');
      

  });

});