<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
xmlns:view="org.puremvc.as3.demos.flex.cf.querycfc.view.components.*"
backgroundGradientColors="[0x3D9FFF, 0xFFFFFF]"
creationComplete="facade.startup(this)" viewSourceURL="srcview/index.html">
<mx:Script>
<![CDATA[
import org.puremvc.as3.demos.flex.cf.querycfc.ApplicationFacade;
/**
* Get reference to the main ApplicationFacade singleton instance
*/
private var facade:ApplicationFacade = ApplicationFacade.getInstance();
]]>
</mx:Script>
<mx:HBox>
<view:UserList id="userList"/>
<view:UserForm id="userForm"/>
</mx:HBox>
</mx:Application>