Skip to content

Commit

Permalink
Step 2.2: Added the Component to the NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 2e115a1 commit 6546e43
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/imports/app/app.module.ts
@@ -1,15 +1,18 @@
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { IonicApp, IonicModule } from "ionic-angular";
import {TabsContainerComponent} from "../pages/tabs-container/tabs-container.component";

@NgModule({
// Components, Pipes, Directive
declarations: [
AppComponent
AppComponent,
TabsContainerComponent
],
// Entry Components
entryComponents: [
AppComponent
AppComponent,
TabsContainerComponent
],
// Providers
providers: [
Expand Down

0 comments on commit 6546e43

Please sign in to comment.