JSFiddle - React, Tailwind, and code Playground

by Travis Harris

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);