JSFiddle - React, Tailwind, and code Playground

HTML

<input id="Test" size="2" type="text" onkeyup="Expand(this)"/>

JavaScript

function Expand(obj) {
    obj.size= parseInt(obj.value.length);
}