18 lines
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { Component, Input } from '@angular/core';
 | |
| 
 | |
| import { Hero } from './hero';
 | |
| 
 | |
| @Component({
 | |
|   selector: 'hero-card',
 | |
|   template: `
 | |
|     <div>
 | |
|       <span>Name:</span>
 | |
|       <span>{{hero.name}}</span>
 | |
|     </div>`
 | |
| })
 | |
| export class HeroCardComponent {
 | |
|   @Input() hero: Hero;
 | |
| }
 | |
| // #docregion
 |