JSFiddle - React, Tailwind, and code Playground

HTML

<div>
<p id="dat"></p>
</div>

JavaScript

function printdate() {
     document.getElementById("dat").innerHTML = Date();
    }
    printdate();