13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
moduleId: module.id,
|
|
selector: 'my-app',
|
|
templateUrl: './app.component.1.html'
|
|
})
|
|
// #docregion class
|
|
export class AppComponent {
|
|
color = 'yellow';
|
|
}
|
|
// #enddocregion class
|