JSFiddle - React, Tailwind, and code Playground

HTML

<div id="note"></div>

JavaScript

const noteElement = document.getElementById('note');

setInterval(() => {
noteElement.innerHTML = `<h1>Hello World</h1><div>Time is ${new Date().toLocaleTimeString()}</div>`;
}, 1000);