JSFiddle - React, Tailwind, and code Playground

HTML

<button id="btn">Add Frame</button>

JavaScript

var addFrame = function() {
    var iframe = document.createElement('iframe');
    iframe.src = 'http://mcm69.org/tmp/frame.html';
    document.body.appendChild(iframe);
};

document.getElementById('btn').onclick = addFrame;