14 lines
		
	
	
		
			281 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			281 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // #docregion
 | |
| import { Component } from '@angular/core';
 | |
| 
 | |
| import { HighlightDirective } from './highlight.directive';
 | |
| 
 | |
| @Component({
 | |
|   selector: 'my-app',
 | |
|   templateUrl: 'app/app.component.html',
 | |
|   directives: [HighlightDirective]
 | |
| })
 | |
| 
 | |
| export class AppComponent { }
 | |
| 
 | |
| // #enddocregion
 |