Patrice Chalin 692d751375 docs: quickstart reboot for Dart (#2867)
* cache/quickstart sync before making Dart edits

* quickstart updates for Dart

* cache/guide/index sync before making Dart edits

* guide/index updates for Dart

* learning-angular for Dart

* guide/setup for Dart

* refresh cache/tutorial/index
2016-11-23 17:58:21 +00:00

10 lines
176 B
Dart

// #docregion
import 'package:angular2/core.dart';
@Component(
selector: 'my-app',
template: '<h1>Hello {{name}}</h1>')
class AppComponent {
var name = 'Angular';
}