JSFiddle - React, Tailwind, and code Playground

HTML

<p contenteditable="true">This is a paragraph. It is editable. Try to change this text.</p>
<input type="hidden" />

JavaScript

document.querySelector("p").addEventListener("input", function(e) {
   document.querySelector("input[type=hidden]").value = e.target.innerHTML;
});