12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
import { HighlightDirective } from './shared/highlight.directive';
|
||
|
|
||
|
@Component({
|
||
|
moduleId: module.id,
|
||
|
selector: 'sg-app',
|
||
|
templateUrl: 'app.component.html',
|
||
|
directives: [HighlightDirective]
|
||
|
})
|
||
|
export class AppComponent { }
|