JSFiddle - React, Tailwind, and code Playground
HTML
<textarea id="txtarea"></textarea>
JavaScript
$(document).ready(function(){
$("#txtarea").keyup(function(){
if($("#txtarea").val().length > 20){
$("#txtarea")[0].cols = $("#txtarea").val().length;
}
});
});