mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
23 lines
381 B
TypeScript
23 lines
381 B
TypeScript
import {IonicView} from 'ionic/ionic';
|
|
|
|
import {Contacts} from 'ionic/ionic';
|
|
|
|
@IonicView({
|
|
template: `
|
|
<ion-navbar *navbar>
|
|
<button menuToggle>
|
|
<ion-icon name="menu"></ion-icon>
|
|
</button>
|
|
<ion-title>Contacts</ion-title>
|
|
</ion-navbar>
|
|
<ion-content padding>
|
|
<h2>Contacts</h2>
|
|
<div>
|
|
</div>
|
|
</ion-content>
|
|
`
|
|
})
|
|
export class ContactsPage {
|
|
|
|
}
|