From 045919b5958e9244cb90d1e2ed1abe127b5f793a Mon Sep 17 00:00:00 2001 From: vsavkin Date: Mon, 2 Nov 2015 16:43:04 -0800 Subject: [PATCH] refactor(playground): update Zippy to use @Input and @Output --- modules/playground/src/zippy_component/zippy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/playground/src/zippy_component/zippy.ts b/modules/playground/src/zippy_component/zippy.ts index f4ad5ac08a..cd79ee08a5 100644 --- a/modules/playground/src/zippy_component/zippy.ts +++ b/modules/playground/src/zippy_component/zippy.ts @@ -1,4 +1,4 @@ -import {Component, View, EventEmitter, Input, Output} from 'angular2/angular2'; +import {Component, EventEmitter, Input, Output} from 'angular2/angular2'; import {ObservableWrapper} from 'angular2/src/core/facade/async'; @Component({selector: 'zippy', templateUrl: 'zippy.html'})