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,17 @@
import { Component } from '@angular/core';
@Component({
templateUrl: 'page.html'
})
export class ApiDemoPage {
demo = 'Toolbar';
favorites = 'recent';
apps = 'free';
}
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
export class ApiDemoApp {
root = ApiDemoPage;
}