mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
16 lines
214 B
TypeScript
16 lines
214 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-nav-page',
|
|
template: `
|
|
<ion-app>
|
|
<ion-nav></ion-nav>
|
|
</ion-app>
|
|
`
|
|
})
|
|
export class NavThenTabsPageComponent {
|
|
constructor() {
|
|
}
|
|
|
|
}
|