JSFiddle - React, Tailwind, and code Playground
by Walter Rumsby
HTML
<link rel="stylesheet" href="//static.branch9.test.xero.com/content/2.4/xero.css">
<script src="//static.branch9.test.xero.com/content/2.4/libs.js"></script>
<script src="//static.branch9.test.xero.com/content/2.4/xero.js"></script>
JavaScript
Ext.widget({
xtype: 'panel',
renderTo: Ext.getBody(),
items: [
{
xtype: 'combo',
store: ['One', 'Two', 'Three', 'Four']
},
{
xtype: 'combo',
store: ['A', 'B', 'C', 'D']
}
]
});