JSFiddle - React, Tailwind, and code Playground
by johanhaest
HTML
<link rel="stylesheet" href="http://cdn.sencha.io/ext-4.1.1-gpl/resources/css/ext-all.css">
JavaScript
Ext.onReady(function () {
var window = Ext.create('Ext.window.Window', {
items: [{
xtype: 'component',
autoEl: {
tag: 'a',
href: 'http://www.example.com/',
html: 'Example.com'
}
}]
}).show();
});