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