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

hello-world1 works!

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