JSFiddle - React, Tailwind, and code Playground

by Minko Gechev

JavaScript

var content = '<h1>Hello, World!</h1>';

(function render() {
    var answer = confirm('Do you want to render the page?');
    if (answer) {
        document.body.innerHTML = content;
    }
}())