JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

HTML

<template>
    Hello <b>world</b>
</template>

<div></div>

CSS

b {
   color: red; 
}

JavaScript

var template = document.querySelector('template');
var div = document.querySelector('div');

//div.appendChild(template.content.cloneNode(true));