JSFiddle - React, Tailwind, and code Playground

HTML

<h1>Test2: Native Style</h1>
<p>This is using the jsFiddle style.css file</p>

JavaScript

var style = document.createElement("link");
style.setAttribute("type", "text/css");
style.setAttribute("rel", "stylesheet");
style.setAttribute("href", "/css/style.css");
jQuery("head")[0].appendChild(style);