2015-11-19 16:59:22 -08:00
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
2015-11-19 16:59:22 -08:00
|
|
|
@Component({
|
2016-09-25 18:51:54 -07:00
|
|
|
moduleId: module.id,
|
2015-11-19 16:59:22 -08:00
|
|
|
selector: 'my-app',
|
2017-01-04 18:56:49 +00:00
|
|
|
templateUrl: './app.component.html'
|
2015-11-19 16:59:22 -08:00
|
|
|
})
|
2016-12-19 17:12:42 -08:00
|
|
|
// #docregion class
|
|
|
|
export class AppComponent {
|
|
|
|
color: string;
|
|
|
|
}
|
|
|
|
// #enddocregion class
|
2016-06-08 01:06:25 +02:00
|
|
|
// #enddocregion
|