17 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { Component } from 'angular2/core';
 | |
| 
 | |
| import { HeroesComponent } from './heroes/heroes.component';
 | |
| import { HeroService } from './heroes/hero.service';
 | |
| 
 | |
| @Component({
 | |
|   selector: 'toh-app',
 | |
|   template: `
 | |
|       <toh-heroes></toh-heroes>
 | |
|     `,
 | |
|   styleUrls: ['app/app.component.css'],
 | |
|   directives: [HeroesComponent],
 | |
|   providers: [HeroService]
 | |
| })
 | |
| export class AppComponent { }
 |