JSFiddle - React, Tailwind, and code Playground

by amoiseev

JavaScript

Ext.define('app.MyComponent', {
 
    extend: 'Ext.container.Container',
    requires: ['Ext.button.Button'],
    alias: 'widget.mycomponent',
 
    items: [{
        xtype: 'button',
        text: 'Button 1',
        handler: this.onButton,
        scope: this
    }],
 
    onButton: function() {
        console.log('button clicked!');
    }
});

Ext.onReady(function() {
});