Files
2015-05-04 09:17:17 -05:00

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 {
}