mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
13 lines
220 B
TypeScript
13 lines
220 B
TypeScript
import {App, NavController} from 'ionic/ionic';
|
|
import {FirstPage} from './pages/first-page';
|
|
|
|
|
|
@App({
|
|
template: '<ion-nav [root]="root"></ion-nav>'
|
|
})
|
|
class E2EApp {
|
|
constructor() {
|
|
this.root = FirstPage;
|
|
}
|
|
}
|