Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / simple / app.js
diff --git a/examples/app/simple/app.js b/examples/app/simple/app.js
new file mode 100644 (file)
index 0000000..5feda67
--- /dev/null
@@ -0,0 +1,18 @@
+Ext.application({
+    name: 'AM',
+
+    controllers: [
+        'Users'
+    ],
+
+    launch: function() {
+        Ext.create('Ext.container.Viewport', {
+            layout: 'fit',
+            items: [
+                {
+                    xtype: 'userlist'
+                }
+            ]
+        });
+    }
+});