JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://docs.sencha.com/extjs/4.1.3/extjs-build/resources/css/ext-all.css">

JavaScript

Ext.create('Ext.Panel', { 
    layout: 'hbox',
    renderTo: Ext.getBody(),
    items: [
        { xtype: 'button', text: 'Select' }, 
        { xtype: 'container', flex:1 },
        { xtype: 'button', text: 'Advanced options' }, 
        { xtype: 'button', text: 'Back' }
    ]
})