Skip to content

Instantly share code, notes, and snippets.

@suzuken
Created January 10, 2012 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzuken/1586488 to your computer and use it in GitHub Desktop.
Save suzuken/1586488 to your computer and use it in GitHub Desktop.
Ext.require('Ext.container.Viewport');
Ext.application({
name:'HelloExt',
launch: function(){
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: [
{
title: 'Hello Ext',
html: 'Hello!'
}
]
});
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment