mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
23 lines
367 B
TypeScript
23 lines
367 B
TypeScript
import {IonicView} from 'ionic/ionic';
|
|
|
|
import {Contacts} from 'ionic/ionic';
|
|
|
|
@IonicView({
|
|
template: `
|
|
<ion-navbar *navbar>
|
|
<button menu-toggle>
|
|
<icon menu></icon>
|
|
</button>
|
|
<ion-title>Contacts</ion-title>
|
|
</ion-navbar>
|
|
<ion-content padding>
|
|
<h2>Contacts</h2>
|
|
<div>
|
|
</div>
|
|
</ion-content>
|
|
`
|
|
})
|
|
export class ContactsPage {
|
|
|
|
}
|