chore(demos): convert to aot structure

convert to aot structure
This commit is contained in:
Dan Bucholtz
2016-09-15 14:40:30 -05:00
parent 7a660af187
commit c7ce93d9fe
182 changed files with 1622 additions and 1040 deletions

View File

@ -0,0 +1,28 @@
import { Component } from '@angular/core';
@Component({
templateUrl: 'page.html'
})
export class ApiDemoPage {
data = {
frodo: true,
sam: false,
eowyn: true,
legolas: true,
gimli: false,
saruman: true,
gandalf: true,
arwen: false,
boromir: false,
gollum: true,
galadriel: false
};
}
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
export class ApiDemoApp {
root = ApiDemoPage;
}