JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2014.1.318/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://kendo.cdn.telerik.com/2014.1.318/styles/kendo.blueopal.min.css">
<script src="http://kendo.cdn.telerik.com/2014.1.318/js/kendo.all.min.js"></script>
<textarea id="Test">
Stuff in'it
</textarea>
CSS
body { margin-top:500px; }
#Test { width:100%; height:200px; }
JavaScript
$(document).ready(function(){
$("#Test").kendoEditor();
});