JSFiddle - React, Tailwind, and code Playground
by TheBuzzer
HTML
<textarea id="TA1" row="75" column="100"></textarea>
<input type="text" id="Text1" value="" />
JavaScript
$('#TA1').change(function(e) {
$('#Text1').val($('#TA1').val().length);
});