JSFiddle - React, Tailwind, and code Playground

by András Parditka

HTML

<script src="https://rawgit.com/lhorie/mithril.js/next/mithril.js"></script>

JavaScript

var data = {
	text: 'Click me'
}

var App = {
	view: function(v) {
  	return (
    	m('button', {
        'onclick': () => {
        	data.text = v.dom + ''
        }
      },
      	data.text
      )
    )
  }
}

m.mount(document.body, App)