Slide 31
Slide 31 text
@shaundunne
ARIA to the rescue
var WarpButton = React.createClass({displayName: "WarpButton",
render: function() {
return React.createElement("span",{
onClick: this.engage,
onKeyUp: this.keyUp,
tabindex: "0",
role: "button"
}, "Engage!");
}
});