JSFiddle - React, Tailwind, and code Playground
by Johan Vandeplas
HTML
<link rel="stylesheet" href="http://cdn.sencha.com/touch/sencha-touch-2.2.0/resources/css/sencha-touch.css">
<script src="http://cdn.sencha.com/touch/sencha-touch-2.2.0/sencha-touch-all-debug.js"></script>
JavaScript
Ext.create('Ext.TabPanel', {
fullscreen: true,
renderTo: Ext.getBody(),
defaults: {
styleHtmlContent: true
},
items: [
{
title: 'Home',
html: 'Home Screen'
},
{
title: 'Contact',
html: 'Contact Screen'
}
]
});