mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
19 lines
304 B
TypeScript
19 lines
304 B
TypeScript
import {IonicView} from 'ionic/ionic';
|
|
|
|
|
|
@IonicView({
|
|
template: `
|
|
<ion-navbar *navbar>
|
|
<button aside-toggle>
|
|
<icon menu></icon>
|
|
</button>
|
|
<ion-title>Device Motion</ion-title>
|
|
</ion-navbar>
|
|
<ion-content class="padding">
|
|
</ion-content>
|
|
`
|
|
})
|
|
export class DeviceMotionPage {
|
|
|
|
}
|