JSFiddle - React, Tailwind, and code Playground

JavaScript

enyo.create({
    components: [
        {name: "testButton", kind:"moon.Button", content : "button to focus on",spotlight:true}
    ],
    rendered: function(){
        this.inherited(arguments);
        //this.$.testButton.focus();
       
        enyo.Spotlight.spot(this.$.testButton);
    }

}).renderInto(document.body);