Files
2016-05-31 15:49:56 -05:00

25 lines
400 B
TypeScript

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