example(pipes): Dart e2e fix (#2825)

Match TS example and only bootstrap AppComponent.
This commit is contained in:
Patrice Chalin 2016-11-18 07:53:41 -08:00 committed by Filipe Silva
parent 1c2d14a8b8
commit 7c8938a424
1 changed files with 1 additions and 3 deletions

View File

@ -1,9 +1,7 @@
import 'package:angular2/platform/browser.dart';
import 'package:pipe_examples/app_component.dart';
import 'package:pipe_examples/hero_birthday1_component.dart';
main() {
void main() {
bootstrap(AppComponent);
bootstrap(HeroBirthdayComponent);
}