JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<body>
<p id="demo"></p>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("demo").innerHTML = "this is from JS";
});
</script>
</body>