- Renamed `angular2_getting_started` to `angular2_quickstart` (to match TS). - s/-/_/g in project names elsewhere (only toh-5 & -6 needed to be updated). Fixes #378.
9 lines
165 B
Dart
9 lines
165 B
Dart
// #docregion
|
|
import 'package:angular2/platform/browser.dart';
|
|
|
|
import 'package:angular2_quickstart/app_component.dart';
|
|
|
|
void main() {
|
|
bootstrap(AppComponent);
|
|
}
|