Files
2016-02-18 14:49:20 -06:00

26 lines
373 B
TypeScript

import {App} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class ApiDemoApp {
data;
constructor() {
this.data = {
frodo: true,
sam: false,
eowyn: true,
legolas: true,
gimli: false,
saruman: true,
gandalf: true,
arwen: false,
boromir: false,
gollum: true,
galadriel: false
};
}
}