Patrice Chalin f993315931 chore(dart): complete the renaming of "Angular 2" to "Angular" (#2820)
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!”`.
2016-11-17 14:10:28 -08:00

9 lines
164 B
Dart

// #docregion
import 'package:angular2/platform/browser.dart';
import 'package:angular_quickstart/app_component.dart';
void main() {
bootstrap(AppComponent);
}