- Fixed HTML. - Removed unnecessary snippet since it is in the code. - Copyedit (Hero Property) -> (Hero property).
10 lines
194 B
Dart
10 lines
194 B
Dart
// #docregion pt1
|
|
import 'package:angular2/platform/browser.dart';
|
|
|
|
import 'package:angular2_tour_of_heroes/app_component.dart';
|
|
|
|
void main() {
|
|
bootstrap(AppComponent);
|
|
}
|
|
// #enddocregion pt1
|