import { Component, OnInit } from '@angular/core'; @Component({ selector: 'star-star', template: `

star works!

`, styles: [] }) export class StarComponent implements OnInit { constructor() { } ngOnInit(): void { } }