JSFiddle - React, Tailwind, and code Playground

HTML

<!-- Mustache.js example - blog.kevinchisholm.com -->
<!DOCTYPE html> 
<html> 
    <head> 
        <meta charset="utf-8"> 
        <title>Mustache.js Test Page</title>
		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
		<script src="https://raw.github.com/janl/mustache.js/master/mustache.js"></script>
    </head>  
    <body>
    	<!-- this div is empty on page load -->
		<div id="container"></div>

		<script>
            (function(){
                //pass a template and some JSON data to Mustache.js
                var output = Mustache.render("{{name}}<br />{{city}}",{
                    "name": "Joe Smith",
                    "city": "London"
                });
            
                //append the HTML that Mustache.js has created to the DOM
                $('#container').append(output);
            })();
		</script>
    </body> 
</html>