JSFiddle - React, Tailwind, and code Playground

JavaScript

Ext.onReady(function() {
  Ext.define("TestClassWithStatics", {
    statics: {
      staticProp: "staticProperty"
    }
  });

  var
    o = Ext.create("TestClassWithStatics");

  alert(TestClassWithStatics.staticProp);
  alert(o.staticProp);
});