Skip to content

Commit

Permalink
Step 5.26: Add profile component to NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 24, 2016
1 parent 2c0de01 commit e0d2295
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -7,6 +7,7 @@ import { MomentModule } from "angular2-moment";
import { MessagesPage } from "../pages/messages/messages";
import { LoginComponent } from "../pages/auth/login";
import { VerificationComponent } from "../pages/verification/verification";
import { ProfileComponent } from "../pages/profile/profile";

@NgModule({
declarations: [
Expand All @@ -15,7 +16,8 @@ import { VerificationComponent } from "../pages/verification/verification";
TabsPage,
MessagesPage,
LoginComponent,
VerificationComponent
VerificationComponent,
ProfileComponent
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -28,7 +30,8 @@ import { VerificationComponent } from "../pages/verification/verification";
TabsPage,
MessagesPage,
LoginComponent,
VerificationComponent
VerificationComponent,
ProfileComponent
],
providers: [{provide: ErrorHandler, useClass: IonicErrorHandler}]
})
Expand Down

0 comments on commit e0d2295

Please sign in to comment.