JSFiddle - React, Tailwind, and code Playground

by Panman8201

HTML

<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/froala_editor.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/froala_editor.min.css">
<div id="editor"></div>

JavaScript

class Controller {
	constructor() {
  	window.alert("Hi there!");
  }
}

class FroalaEditorComponent {

	constructor() {
  	let element = document.createElement("div");
    element.id = "editor2";
    document.body.appendChild(element);
  }
}

new FroalaEditor("#editor");
new Controller();