JSFiddle - React, Tailwind, and code Playground

by Thomas Upton

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.4.0/moment.js"></script>
<span class="timer"></span>

JavaScript

(function update_time(){ 
    var now = moment().format('h:mm:ss a');
    $('.timer').text(now);
    setTimeout(update_time, 1000);
})();