Ward Bell f4acc0ccbc docs(tutorial): Part 3 improvements + input explanation
Updated Attribute Directives chapter with appendix on input properties
closes #576
2015-12-17 02:12:58 -08:00

13 lines
275 B
TypeScript

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