JSFiddle - React, Tailwind, and code Playground

HTML

<div class="textbox">     </div>

CSS

.textbox {   width: 40ex;   height: 20ex;   border: thin solid;   overflow: hidden; }

JavaScript

$(function() {
    var lots_of_text = (new Array(1001)).join('aaaa bbbb\n');
    $('.textbox').text(lots_of_text);
    $('.textbox').resizable();
});