JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://cdn.sencha.io/touch/sencha-touch-2.1.1/resources/css/sencha-touch.css">
<script src="http://cdn.sencha.io/touch/sencha-touch-2.1.1/sencha-touch-all-debug.js"></script>

JavaScript

Ext.Loader.setConfig({
    enabled: true
});

Ext.application({    
    launch: function() {
        Ext.Viewport.add({
            xtype: 'carousel',
            height: 300,
            width: 300,
            items: [{
                style: 'background-color: #00ffff;'
            },{
                style: 'background-color: #ff00ff;'
            },{
                style: 'background-color: #ffff00;'
            }]
        });
    }
});