JSFiddle - React, Tailwind, and code Playground
HTML
<p id="hello"></p>
JavaScript
let hello = document.getElementById("hello");
hello.textContent = "Hello!";
<p id="hello"></p>
let hello = document.getElementById("hello");
hello.textContent = "Hello!";