2015-10-15 23:25:02 -07:00
|
|
|
// #docregion
|
2016-03-25 16:03:53 -07:00
|
|
|
import 'package:angular2/core.dart';
|
2016-03-28 13:30:03 -07:00
|
|
|
import 'package:angular2/platform/browser.dart';
|
2015-10-15 23:25:02 -07:00
|
|
|
|
|
|
|
@Component(selector: 'my-app', template: '<h1>My First Angular 2 App</h1>')
|
|
|
|
class AppComponent {}
|
|
|
|
|
|
|
|
main() {
|
|
|
|
bootstrap(AppComponent);
|
|
|
|
}
|