/**
 * @author schiesser
 */
Ext.ns('comp');

comp.createStaticLink = function(label, href) {
	return new Ext.BoxComponent({
		autoEl: {
			tag: 'a',
			cls: 'app-link',
			html: label,
			href: (href===undefined)?'#':href
		}
	});
};

