JSFiddle - React, Tailwind, and code Playground
by ericf
JavaScript
YUI().use('panel', 'widget-anim', function (Y) {
Y.one('body').addClass('yui3-skin-sam');
new Y.Panel({
headerContent: 'My Panel',
bodyContent : 'Bla Bla',
width : 300,
plugins : [Y.Plugin.WidgetAnim],
hideOn : [{eventName: 'clickoutside'}],
render : true
});
});