JSFiddle - React, Tailwind, and code Playground

by el_chief

HTML

<link rel="stylesheet" href="//extjs.cachefly.net/ext-4.1.0-gpl/resources/css/ext-all-gray.css" />

JavaScript

Ext.create('Ext.panel.Panel', {
    renderTo:Ext.getBody(),
    title:'asdf',
    frame:true,
    height:200,
    layout:'card',
    items:[
        {
            html:'asdf'
        },
        {
            html:'TWOOOOOOOOOOO'
        }
    ]
});