JSFiddle - React, Tailwind, and code Playground

HTML

<textarea style="overflow: visible" />

JavaScript

function textAreaAdjust(o) {
    o.style.height = "1px";
    setTimeout(function() {
        o.style.height = (o.scrollHeight)+"px";
    }, 1);
}