JSFiddle - React, Tailwind, and code Playground

HTML

<textarea class="txt"></textarea>

CSS

.txt {
	width: 200px;
	height: 50px;
	transition: height 0.2s linear;
}

JavaScript

$(document).ready(function() {
	$('.txt').on('keyup', function(event) {
		var textareaElm = event.target;
        if (textareaElm.scrollHeight > textareaElm.clientHeight) {
            textareaElm.style.height = textareaElm.scrollHeight + "px";
        }
	});
})