Patrice Chalin 3510f96620 docs(guide/pipes): follow-up to #1654 (#1769)
Mainly Dart-side review, following #1654:
- Updates to follow style guide
- Suites passed:
  public/docs/_examples/pipes/dart
- Suites failed (known issue - #1761):
  public/docs/_examples/pipes/ts
2016-06-28 08:22:53 -07:00

10 lines
238 B
Dart

import 'package:angular2/platform/browser.dart';
import 'package:pipe_examples/app_component.dart';
import 'package:pipe_examples/hero_birthday1_component.dart';
main() {
bootstrap(AppComponent);
bootstrap(HeroBirthdayComponent);
}