2015-11-19 16:59:22 -08:00
|
|
|
// #docregion
|
2015-12-10 20:27:41 -08:00
|
|
|
import {Component} from 'angular2/core';
|
2015-12-16 19:38:07 -08:00
|
|
|
import {HighlightDirective} from './highlight.directive'
|
2015-11-19 16:59:22 -08:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
|
|
|
templateUrl: 'app/app.component.html',
|
2015-12-16 19:38:07 -08:00
|
|
|
directives: [HighlightDirective]
|
2015-11-19 16:59:22 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
export class AppComponent { }
|
|
|
|
|
|
|
|
// #enddocregion
|