JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<link rel="stylesheet" href="http://static.branch12.test.xero.com/content/1.9/xero.css">
<div id="container"></div>

JavaScript

Ext.widget({
    xtype: 'container',
    layout: 'hbox',
    cls: 'x-grid-editor',
    renderTo: 'container',
    items: [
        {
            xtype: 'textfield'
        },
        {
            xtype: 'combobox',
            store: ['One', 'Two', 'Three', 'Four']
        }
   ]
});