8 lines
153 B
Dart
8 lines
153 B
Dart
// #docregion
|
|
import 'package:angular2/bootstrap.dart';
|
|
import 'package:template_syntax/app_component.dart';
|
|
|
|
void main() {
|
|
bootstrap(AppComponent);
|
|
}
|