JSFiddle - React, Tailwind, and code Playground

HTML

<div id='div'>
  <textarea></textarea>
</div>

JavaScript 1.7

var div = document.getElementById('div');

var newText = document.createElement('textarea'); // create new textarea

div.appendChild(newText); // add it to the div