chore(demos): ngc compile

This commit is contained in:
Dan Bucholtz
2016-09-15 23:29:37 -05:00
parent 0d161ac51c
commit 7ac1434fba
19 changed files with 64 additions and 28 deletions

View File

@ -1,18 +1,22 @@
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { ApiDemoApp, ApiDemoPage } from './app.component';
import { ApiDemoApp, ApiDemoPage, PushPage, TabPage } from './app.component';
@NgModule({
declarations: [
ApiDemoApp,
ApiDemoPage
ApiDemoPage,
PushPage,
TabPage
],
imports: [
IonicModule.forRoot(ApiDemoApp)
],
bootstrap: [IonicApp],
entryComponents: [
ApiDemoPage
ApiDemoPage,
PushPage,
TabPage
]
})
export class AppModule {}