Contributes to #2407 - Dropped the “2” in “Angular 2” and “angular2_*” where appropriate. - Did a partial sync of `_cache/guide/pipes.jade` - In quickstart, changed `Try changing the message to "Hello Angular 2!”` to `Try changing the message to "Hello Again Angular!”`.
10 lines
188 B
Dart
10 lines
188 B
Dart
// #docregion pt1
|
|
import 'package:angular2/platform/browser.dart';
|
|
|
|
import 'package:angular_tour_of_heroes/app_component.dart';
|
|
|
|
main() {
|
|
bootstrap(AppComponent);
|
|
}
|
|
// #enddocregion pt1
|