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
10 lines
238 B
Dart
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);
|
|
}
|