JSFiddle - React, Tailwind, and code Playground
by phsiao2000
HTML
<h1>Hello There</h1>
<div>First Paragraph</div>
<template id="custom-paragraph">
<p>My paragraph</p>
</template>
<div>Second Paragraph</div>
JavaScript
let template = document.getElementById("custom-paragraph");
let templateContent = template.content;
document.body.appendChild(templateContent);