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,19 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../src';
import { AppComponent } from './app.component';
import { PageOneModule } from '../pages/page-one/page-one.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent),
PageOneModule
],
bootstrap: [IonicApp]
})
export class AppModule {}