docs(forms): fix import in sample HeroFormsComponent - @angular/common -> @angular/forms

This commit is contained in:
Ward Bell 2016-07-04 15:07:12 -07:00
parent d1e6a24987
commit e4c5fe32e7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
// #docregion
// #docregion first, final
import { Component } from '@angular/core';
import { NgForm } from '@angular/common';
import { NgForm } from '@angular/forms';
import { Hero } from './hero';