Skip to content

Commit

Permalink
Step 11.5: Add import to angular forms module
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and Dotan Simha committed Nov 22, 2016
1 parent 09cf3ce commit 9e8bb62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/imports/app.module.ts
Expand Up @@ -7,6 +7,7 @@ import {ListRedirectorComponent} from "./components/list-redirector.component";
import {Angular2BlazeTemplateModule} from "angular2-blaze-template";
import {JoinComponent} from "./components/join.component";
import {SigninComponent} from "./components/signin.component";
import {FormsModule} from "@angular/forms";

@NgModule({
// Components, Pipes, Directive
Expand All @@ -27,7 +28,8 @@ import {SigninComponent} from "./components/signin.component";
imports: [
BrowserModule,
routing,
Angular2BlazeTemplateModule
Angular2BlazeTemplateModule,
FormsModule
],
// Main Component
bootstrap: [MainComponent]
Expand Down

0 comments on commit 9e8bb62

Please sign in to comment.