JSFiddle - React, Tailwind, and code Playground

by igor23

HTML

<script src="http://cdn.sencha.com/ext/gpl/4.2.1/ext-all.js"></script>
<link rel="stylesheet" href="http://cdn.sencha.com/ext/gpl/4.2.1/resources/css/ext-all.css">

JavaScript

Ext.onReady(function() {    
    Ext.create('Ext.panel.Panel', {
        title: 'panel',
        renderTo: Ext.getBody()
    });
    Ext.create('Ext.window.Window', {
        width: 100,
        height: 100,
        html: 'Hello',
        resizable: {
            dynamic: true
        }
    }).show();
});