Files
ionic-framework/ionic/components/split-view/test/settings/groups/general.js
Andrew 14ecc7178b wip
2015-04-25 13:07:53 -05:00

17 lines
291 B
JavaScript

import {Component, View as NgView} from 'angular2/angular2'
import {View} from 'ionic/ionic'
@Component({
selector: 'settings-general'
})
@NgView({
template: `
<ion-view nav-title="General Stuff">
General Settings
</ion-view>
`,
directives: [View]
})
export class GeneralPage {
}