JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container"></div>
<button id="launch">Show content</button>
<template id="content">
    <h1>Content</h1>
    <button id="launch2">Click me!</button>
</template>

JavaScript

//window.launcher = function(){
    $('#launch').on('click', function(){
        var content = $('#content').html();
        $('#container').html(content);
    });
//};

//window.launcher2 = function(){
    $('#lanch2').on('click', function(){
        alert('You clicked me!');
    });
//};