mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
rename src to ionic
This commit is contained in:
16
ionic/components/aside/test/basic/main.js
Normal file
16
ionic/components/aside/test/basic/main.js
Normal file
@ -0,0 +1,16 @@
|
||||
import {Aside} from 'ionic2/components/aside/aside';
|
||||
import {Content} from 'ionic2/components/content/content';
|
||||
import {View} from 'ionic2/components/view/view';
|
||||
import {Template, Component, bootstrap} from 'angular2/angular2';
|
||||
|
||||
@Component({
|
||||
selector: '[ion-app]'
|
||||
})
|
||||
@Template({
|
||||
directives: [Aside, Content, View],
|
||||
url: 'main.html'
|
||||
})
|
||||
class App {
|
||||
}
|
||||
|
||||
bootstrap(App);
|
||||
Reference in New Issue
Block a user