Skip to content

Commit

Permalink
added ReactiveFormsModule to SharedModule
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick Baron committed Oct 27, 2016
1 parent 068b7e4 commit 7eb3e2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { RouterModule } from '@angular/router';

Expand All @@ -13,6 +13,7 @@ import { ShowAuthedDirective } from './show-authed.directive';
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
HttpModule,
RouterModule
],
Expand All @@ -33,6 +34,7 @@ import { ShowAuthedDirective } from './show-authed.directive';
FavoriteButtonComponent,
FollowButtonComponent,
FormsModule,
ReactiveFormsModule,
HttpModule,
ListErrorsComponent,
RouterModule,
Expand Down

0 comments on commit 7eb3e2a

Please sign in to comment.