15 lines
350 B
Dart
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 {}
|