syncthing/src/app/chart/chart-item/chart-item.component.ts

16 lines
315 B
TypeScript
Raw Normal View History

2020-03-20 00:00:28 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-chart-item',
templateUrl: './chart-item.component.html',
styleUrls: ['./chart-item.component.scss']
})
export class ChartItemComponent implements OnInit {
state: string = "test"
constructor() { }
ngOnInit(): void {
}
}