/**
 * A simple label component which allows you to insert content using {@link #html} configuration
 */
Ext.define('Ext.Label', {
    extend: 'Ext.Component',
    xtype: 'label',

    config: {
        /**
         * @cfg {String} html
         */
    }
});