JSFiddle - React, Tailwind, and code Playground
HTML
<button id="frameAdd">Add I-Frame</button>
<div id="contentFrame"></div>
JavaScript
var button = document.getElementById( "frameAdd" )
var frame = document.getElementById( "contentFrame" )
button.addEventListener( "click", function () {
frame.innerHTML = '<iframe width="560" height="315" src="https://www.youtube.com/embed/91liSjahuNw" frameborder="0" allowfullscreen></iframe>'
})