JSFiddle - React, Tailwind, and code Playground

by EDWIN MAURICIO QUISHPE MALDONADO

JavaScript

enyo.kind({
    name: "MyKind",
    content: "Testing"
});

enyo.kind({
    name: "App",
    components: [
        {kind: "MyKind", onclick: "whatKind"},
        {kind: "Button", onclick: "whatKind"},
        {name: "showKind"}
    ],
    whatKind: function(inSender, inEvent) {
        this.$.showKind.setContent(inSender.kind);
    }
});

new App().renderInto(document.body);