mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { RootPage } from '../pages/root-page/root-page';
|
|
|
|
@Component({
|
|
template: '<ion-nav [root]="root"></ion-nav>'
|
|
})
|
|
export class AppComponent {
|
|
root = RootPage;
|
|
}
|