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