JSFiddle - React, Tailwind, and code Playground
by Ryan Duffy
JavaScript
enyo.kind({
name:"ex.App",
kind:"Control",
components:[
{kind:"Control", content:"Tap Me!", onclick:"tapped"}
],
tapped:function(source, e) {
source.setContent("Tapped!");
}
});
new ex.App().renderInto(document.body);