mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 06:22:45 +08:00
17 lines
243 B
JavaScript
17 lines
243 B
JavaScript
import {Component, View} from 'angular2/angular2'
|
|
|
|
|
|
@Component({
|
|
selector: 'settings-general'
|
|
})
|
|
@View({
|
|
template: `
|
|
<ion-view nav-title="General Stuff">
|
|
General Settings
|
|
</ion-view>
|
|
`,
|
|
directives: []
|
|
})
|
|
export class GeneralPage {
|
|
}
|