JSFiddle - React, Tailwind, and code Playground

by shapeshifta

HTML

<span class="hidden js-style">
  body {
    color: red;
  }
</span>
This is a test!

CSS

.hidden {
  display: none;
}

Babel + JSX

$('.js-style').each((i, elm) => {
	$('head').append(`<style>${$(elm).text()}</style>`);
});