LivepeerEvents/src/components/BlockViewer.js
2022-03-14 10:13:31 +01:00

23 lines
889 B
JavaScript

import React from "react";
const Block = (obj) => {
const thisEpoch = obj.time;
var dateObj = new Date(0);
dateObj.setUTCSeconds(thisEpoch);
const [thisDate, thisTime] = dateObj.toISOString().split('T');
return (
<div className="rowAlignLeft" style={{ marginTop: '1em' }}>
<a className="selectOrch" style={{ cursor: 'alias' }} target="_blank" rel="noopener noreferrer" href={obj.url}>
<img alt="" src="arb.svg" width="20em" height="20em" />
</a>
<a className="selectOrch" style={{ cursor: 'alias' }} target="_blank" rel="noopener noreferrer" href={"https://arbiscan.io/block/" + obj.block}>
<h3 style={{ padding: '0.2em', cursor: 'alias' }}>🔗</h3>
</a>
<span className="rowAlignRight darkText mobileSmallerFont">
UTC&nbsp;📅{thisDate} - {thisTime.split('.')[0]}
</span>
</div>
)
}
export default Block;