JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.aloha-editor.org/current/lib/aloha.js"></script>
<link rel="stylesheet" href="http://cdn.aloha-editor.org/current/css/aloha.css">
<br><br><br><br><br><br><div class="editable">Default Text</div>

JavaScript

Aloha.ready( function() {
        var $ = Aloha.jQuery;
        $('.editable').aloha();
    
    Aloha.bind('aloha-smart-content-changed', function() {
          console.log('Aloha smart event handled.');
        });        
});