JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//cdn.ckeditor.com/4.5.6/standard-all/ckeditor.js"></script>
<textarea cols="80" id="editor1" name="editor1" rows="10">
  &lt;h1&gt;&lt;img alt=&quot;Saturn V carrying Apollo 11&quot; class=&quot;right&quot; src=&quot;http://c.cksource.com/a/1/img/sample.jpg&quot;/&gt; Apollo 11&lt;/h1&gt;
  &lt;p&gt;foo bar&lt;/p&gt;
</textarea>
<script>
  CKEDITOR.replace( 'editor1', {
    extraPlugins: 'image2',
    removePlugins: 'image',
    height: 400,
    stylesSet: [
      { name: 'Image decoration', type: 'widget', widget: 'image', attributes: { 'class': 'testStyle' } }
    ]
  } );
</script>