mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import { Component } from '@angular/core';
|
|
import { PageOne } from '../pages/page-one/page-one';
|
|
|
|
@Component({
|
|
template: '<ion-nav [root]="root"></ion-nav>'
|
|
})
|
|
export class AppComponent {
|
|
root = PageOne;
|
|
}
|