JSFiddle - React, Tailwind, and code Playground
by oceog
HTML
<div id="container"></div>
JavaScript
function init() {
var conts = document.getElementById("container");
var script = document.createElement("script");
conts.appendChild(script);
script.type = 'text/javascript';
script.src = 'https://gist.github.com/zba/4770239/raw/705211c2578c0947d3f4c6cd71f538e3a0be82b8/gistfile1.txt';
script.onload = function () {
run();
};
}
window.onload = init;