JSFiddle - React, Tailwind, and code Playground

by ericf

HTML

<script src="http://yui.yahooapis.com/3.5.0pr4/build/yui/yui-min.js"></script>

JavaScript

YUI().use('button-plugin', function (Y) {

    var button = Y.Plugin.Button.createNode({label: 'Some Label'});
    Y.one('body').appendChild(button);

});