JSFiddle - React, Tailwind, and code Playground
HTML
<textarea placeholder="Type with newlines">
Hello
this
is
text
</textarea>
<div>
CSS
div {
white-space: pre;
}
JavaScript
document.querySelector("textarea").addEventListener("keyup", function () {
document.querySelector("div").textContent = this.value;
});