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

16 lines
290 B
TypeScript
Raw Normal View History

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