JSFiddle - React, Tailwind, and code Playground
HTML
<p>This example sets the value of `email` and then replaces the text of the `h1` element after a few seconds.</p>
<h1 id="userEmail">Placeholder text</h1>
JavaScript
var email = "[email protected]";
$(document).ready(function(){
setTimeout(function(){
document.getElementById("userEmail").innerHTML = email;
}, 3000);
});