X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/app/simple/app.js diff --git a/examples/app/simple/app.js b/examples/app/simple/app.js new file mode 100644 index 00000000..5feda679 --- /dev/null +++ b/examples/app/simple/app.js @@ -0,0 +1,18 @@ +Ext.application({ + name: 'AM', + + controllers: [ + 'Users' + ], + + launch: function() { + Ext.create('Ext.container.Viewport', { + layout: 'fit', + items: [ + { + xtype: 'userlist' + } + ] + }); + } +});