JSFiddle - React, Tailwind, and code Playground
HTML
<template id="hello">
Hello <b><content></content></b>
</template>
<b>LIST:</b>
<div>Sandro</div>
<div>Gabriele</div>
JavaScript
var template = document.querySelector('#hello');
[].forEach.call(document.querySelectorAll('div'), function(ele){
var root = ele.createShadowRoot();
root.appendChild(template.content.cloneNode(true));
});