JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://rawgit.com/MithrilJS/mithril.js/fd7ae98988f6c7ec8acfad30291a460fa6e6a129/mithril.js"></script>
<div id="app">
</div>
JavaScript
var App = {
view: function (v) {
return (
m('div',
m('iframe', {
'src': 'data:text/html;base64,PGJvZHk+',
'onload': () => {
console.log(m.version)
}
})
)
)
}
}
m.mount(document.getElementById('app'), App)