mempool/frontend/src/app/explorer/block/block.component.ts

16 lines
266 B
TypeScript
Raw Normal View History

2019-11-06 15:35:02 +08:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-block',
templateUrl: './block.component.html',
styleUrls: ['./block.component.scss']
})
export class BlockComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}