JSFiddle - React, Tailwind, and code Playground
HTML
<p>Keep clicking, i'll change</p>
JavaScript
$("body").delegate("p", "click", function(){
localStorage.setItem('key', JSON.stringify(Math.random()));
});
setInterval(function () {
$('p').text(JSON.parse(localStorage.getItem('key')))
}, 500);