JSFiddle - React, Tailwind, and code Playground
by ericf
HTML
<h1>Loading</h1>
<script src="https://yui-s.yahooapis.com/3.10.1/build/yui/yui-min.js"></script>
CSS
body {
background-color: red;
}
JavaScript
YUI({
comboBase: 'https://yui-s.yahooapis.com/combo?',
combine: true
}).use('node', function(Y) {
Y.one('h1').setHTML('Loaded: ' + Y.version);
Y.one('body').setStyle('backgroundColor', 'green');
});