11 lines
		
	
	
		
			238 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			238 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // #docregion
 | |
| import 'package:angular2/core.dart';
 | |
| import 'package:angular2/platform/browser.dart';
 | |
| 
 | |
| @Component(selector: 'my-app', template: '<h1>My First Angular 2 App</h1>')
 | |
| class AppComponent {}
 | |
| 
 | |
| main() {
 | |
|   bootstrap(AppComponent);
 | |
| }
 |