Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / simple / app.js
1 Ext.application({
2     name: 'AM',
3
4     controllers: [
5         'Users'
6     ],
7
8     launch: function() {
9         Ext.create('Ext.container.Viewport', {
10             layout: 'fit',
11             items: [
12                 {
13                     xtype: 'userlist'
14                 }
15             ]
16         });
17     }
18 });