10 lines
229 B
Dart
10 lines
229 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(HeroBirthday);
|
|
}
|