mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: 'app-graphs',
|
|
templateUrl: './graphs.component.html',
|
|
styleUrls: ['./graphs.component.scss'],
|
|
})
|
|
export class GraphsComponent implements OnInit {
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
}
|