define(['jquery', 'ui/component'],function($, Component){ var Arena = Component.extend({ init: function(){ this.element = $('
'); }, adopt: function(component) { this.element.append(component.element); } }); return Arena; });