mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'home',
|
|
template: require('./home.component.html')
|
|
})
|
|
export class HomeComponent {
|
|
public ratingValue: number;
|
|
}
|