From fba9e90fa6bd9ff0673b005d709a96a5173dc5ff Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Tue, 8 Dec 2015 11:22:15 -0800 Subject: [PATCH] docs(template-syntax): import {NgForm} from 'angular2/common' closes #458 --- .../docs/_examples/template-syntax/ts/src/app/app.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/docs/_examples/template-syntax/ts/src/app/app.component.ts b/public/docs/_examples/template-syntax/ts/src/app/app.component.ts index 047c856ca0..b285f1b3e9 100644 --- a/public/docs/_examples/template-syntax/ts/src/app/app.component.ts +++ b/public/docs/_examples/template-syntax/ts/src/app/app.component.ts @@ -1,4 +1,5 @@ -import {Component, NgForm} from 'angular2/core'; +import {Component} from 'angular2/core'; +import {NgForm} from 'angular2/common'; import {Hero} from './hero'; import {HeroDetailComponent, BigHeroDetailComponent} from './hero-detail.component';