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