JSFiddle - React, Tailwind, and code Playground

by mark69_fnd

HTML

<div class="yui3-skin-sam" id="root"></div>

JavaScript

YUI().use('datatable', function(Y) {
    var table = new Y.DataTable({
        columns: [
            {label: 'strings', sortable: true}
        ],
        data: [1,2]
    });
    table.render('#root');
});