JSFiddle - React, Tailwind, and code Playground

by jarosciak

HTML

Create an HTML table with a 1px light grey border. The header includes 'Date & Time', Function Name, Address From, Address To,  ETH Amount, and Transaction Hash, Term, Rank, Stake. Populate the first row with random data.

<table border="1px" style="border-color: lightgrey;">
  <tr>
    <th>Date/Time</th>
    <th>Function Name</th>
    <th>Address From</th>
    <th>Address To</th>
    <th>ETH Amount</th>
    <th>Transaction Hash</th>
    <th>Term</th>
    <th>Rank</th>
    <th>Stake</th>
  </tr>
  <tr>
    <td>11/14/2020 9:00AM</td>
    <td>transfer()</td>
    <td>0x33D9f9A7A8eA76fF7fE1B3F3f3D3A3d3B3e3A3f3</td>
    <td>0x33D9f9A7A8eA76fF7fE1B3F3f3D3A3d3B3e3A3f3</td>
    <td>2.0 ETH</td>
    <td>0x3D3f3A3e3B3A3d3F3f3E1B7fF8eA76f9A7D933</td>    
    <td>30 days</td>
    <td>25000</td>
    <td>30 days</td>
  </tr>
</table>