JSFiddle - React, Tailwind, and code Playground

by ericf

HTML

<button>GO</button>

JavaScript

YUI().use('node', function (Y) {
    
    Y.one('button').on('click', function(){ this.set('text', 'HOME') });
    
});