JSFiddle - React, Tailwind, and code Playground
JavaScript
enyo.kind({
name: "Test",
components:[{
kind:'onyx.Button',
content:'Alert variable',
varName:'Foo',
ontap:'alertVar'
}],
alertVar:function(inSender,inEvent){
alert(inSender.varName);
}
}).renderInto(document.body);