mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
15 lines
207 B
TypeScript
15 lines
207 B
TypeScript
import {App, Page} from '../../../../../ionic';
|
|
|
|
|
|
@App({
|
|
template: '<ion-nav [root]="rootPage"></ion-nav>'
|
|
})
|
|
class E2EApp {
|
|
rootPage = PageOne;
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class PageOne {}
|