2015-11-19 16:59:22 -08:00
|
|
|
// #docregion
|
2016-04-27 11:28:22 -07:00
|
|
|
import {Component} from '@angular/core';
|
2015-12-23 08:05:12 +09: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
|