UNPKG

@nepwork/dashboards

Version:

Dashboards for emergencies and monitoring

21 lines (16 loc) 263 B
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'lib-cache', template: ` <p> cache works! </p> `, styles: [ ], }) export class CacheComponent implements OnInit { constructor() { } ngOnInit(): void { } }