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