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!”`.
9 lines
164 B
Dart
9 lines
164 B
Dart
// #docregion
|
|
import 'package:angular2/platform/browser.dart';
|
|
|
|
import 'package:angular_quickstart/app_component.dart';
|
|
|
|
void main() {
|
|
bootstrap(AppComponent);
|
|
}
|