Skip to content

Commit

Permalink
Step 5.25: Add profile component to NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 28, 2016
1 parent fa3b979 commit 016f1ab
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: []
})
Expand Down

0 comments on commit 016f1ab

Please sign in to comment.