JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://cdn.ckeditor.com/4.5.3/standard/ckeditor.js"></script>
JavaScript
setTimeout(function(){
$("body").append('<textarea name="" id="txt" cols="30" rows="10"></textarea>');
CKEDITOR.replace('txt');
console.log("added");
}, 1000);