JSFiddle - React, Tailwind, and code Playground

by charlesbourasseau

HTML

<div class="container"><textarea>This is my very long text that shouldn't be broken. This is my very long text that shouldn't be broken</textarea></div>    
<script src="//tinymce.cachefly.net/4.1/tinymce.min.js"></script>
<script>tinymce.init({
    selector:'textarea',
	plugins: "autoresize"
});</script>

CSS

.container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
}