JSFiddle - React, Tailwind, and code Playground
by Ryan Duffy
JavaScript
enyo.kind({
name:"ex.App",
kind:"Control",
handlers:{
onmove:"mousemove",
onleave:"mouseout"
},
components:[
{content:"mouse over me for some log messages", style:"height:100px;background:#eee"}
],
mousemove:function() {
enyo.log("move");
},
mouseout:function() {
enyo.log("out");
}
});
new ex.App().renderInto(document.body)