13 lines
276 B
TypeScript
Raw Normal View History

// #docregion
2016-04-27 11:28:22 -07:00
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