2016-03-25 15:21:11 -07:00

15 lines
350 B
Dart

// #docregion
import 'package:angular2/core.dart';
import 'hero_list_component.dart';
import 'hero_service_provider.dart';
@Component(
selector: 'my-heroes',
template: '''
<h2>Heroes</h2>
<hero-list></hero-list>''',
providers: const [heroServiceProvider],
directives: const [HeroListComponent])
class HeroesComponent {}