refactor(playground): update Zippy to use @Input and @Output

This commit is contained in:
vsavkin 2015-11-02 16:43:04 -08:00 committed by Victor Savkin
parent 6f1a89e3a9
commit 045919b595
1 changed files with 1 additions and 1 deletions

View File

@ -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'})