Files
2016-02-24 11:18:51 -05:00

12 lines
216 B
TypeScript

import {App} from 'ionic-angular';
// Uses the list's demo but passes the demo var to change the title
@App({
templateUrl: '../list/main.html'
})
class ApiDemoApp {
constructor() {
this.demo = "Item";
}
}