13 lines
		
	
	
		
			231 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			231 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|  | // #docregion
 | ||
|  | import { Component } from '@angular/core'; | ||
|  | 
 | ||
|  | @Component({ | ||
|  |   selector: 'toh-app', | ||
|  |   template: `
 | ||
|  |     <toh-nav></toh-nav> | ||
|  |     <toh-heroes></toh-heroes> | ||
|  |     <toh-spinner></toh-spinner> | ||
|  |   `
 | ||
|  | }) | ||
|  | export class AppComponent { } |