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

hgraph works!

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