NOTE: The Dart version generates fewer lifecycle events than the TS version. See angular/angular#6498 for details. closes #733
8 lines
148 B
Dart
8 lines
148 B
Dart
// #docregion
|
|
import 'package:angular2/bootstrap.dart';
|
|
import 'package:lifecycle_hooks/app_component.dart';
|
|
|
|
main() {
|
|
bootstrap(AppComponent);
|
|
}
|