JSFiddle - React, Tailwind, and code Playground
by YangHax
HTML
<link rel="stylesheet" href="http://dev.sencha.com/deploy/ext-4.0.2a/resources/css/ext-all.css">
<html>
<head>
<title>ExtJS4 Test</title>
</head>
<body>
</body>
</html>
JavaScript
// ExtJS 4 Base
//**************************//
Ext.onReady(function(){
Ext.create('Ext.Window',{
title: 'zz'
, width: 300
, height: 200
}).show();
});