Skip to content

Commit

Permalink
Step 1.3: Updated the NgModule to use Ionic 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 5df4813 commit 53def91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/imports/app/app.module.ts
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { IonicApp, IonicModule } from "ionic-angular";

@NgModule({
// Components, Pipes, Directive
Expand All @@ -17,9 +17,9 @@ import { AppComponent } from './app.component';
],
// Modules
imports: [
BrowserModule
IonicModule.forRoot(AppComponent)
],
// Main Component
bootstrap: [ AppComponent ]
bootstrap: [ IonicApp ]
})
export class AppModule {}

0 comments on commit 53def91

Please sign in to comment.