docs(demos): update api demos to modular structure

update api demos to modular structure
This commit is contained in:
Dan Bucholtz
2017-03-02 14:26:30 -06:00
parent 7281f020f4
commit 0fdff89b67
316 changed files with 3057 additions and 1896 deletions

View File

@ -0,0 +1,9 @@
import { Component } from '@angular/core';
import { PageOne } from '../pages/page-one/page-one';
@Component({
template: '<ion-nav [root]="root"></ion-nav>'
})
export class AppComponent {
root = PageOne;
}