JSFiddle - React, Tailwind, and code Playground

by saxxi

HTML

<link rel="stylesheet" href="http://dev.sencha.com/deploy/ext-4.0.2a/resources/css/ext-all-gray.css">

JavaScript

Ext.onReady(function () {
  Ext.create('Ext.container.Viewport', {
    layout: 'fit',
    items: {
      layout: {
        type: 'vbox',
        align: 'stretch'
      },
      items: [{
        xtype: 'panel',
        title: 'top',
        flex: 1,
        html: 'test 1'
      }, {
        xtype: 'panel',
        title: 'bottom',
        flex: 1,
        html: 'test 2'
      }]
    },
    renderTo: Ext.getBody()
  });
});