Skip to content

Instantly share code, notes, and snippets.

@dviramontes
Created August 15, 2019 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dviramontes/b50318c23b0f19b541777d8a9c6e7863 to your computer and use it in GitHub Desktop.
Save dviramontes/b50318c23b0f19b541777d8a9c6e7863 to your computer and use it in GitHub Desktop.
<div className='ui container assets'>
<div className='ui row'>
{ loading ?
<Loading /> :
<table className='ui padded table'>
<thead>
<tr>
<th>Asset</th>
<th>Platform</th>
<th>KeepKey</th>
<th>Trezor</th>
<th>ShapeShift.io</th>
<th>Status</th>
</tr>
</thead>
<CoinContext.Provider value={{coins: data}}>
<tbody>
<TableRow coin="Bitcoin (BTC)" src={btc} ticker={"BTC"}/>
<TableRow coin="Bitcoin Cash (BCH)" src={bch} ticker={"BCH"}/>
<TableRow coin="Ethereum (ETH)" src={eth} ticker={"ETH"}/>
<TableRow coin="Binance Coin (BNB)" src={bnb} ticker={"BNB"}/>
<TableRow coin="Ethereum Classic (ETC)" src={btc} ticker={"BTC"}/>
<TableRow coin="Ripple (XRP)" src={xrp} ticker={"XRP"}/>
<TableRow coin="Monero (XMR)" src={xmr} ticker={"XMR"}/>
<TableRow coin="Zcash (ZEC)" src={zec} ticker={"ZEC"}/>
<TableRow coin="0x (ZRX)" src={zrx} ticker={"ZRX"}/>
<TableRow coin="Digibyte (DGB)" src={dgb} ticker={"DGB"}/>
<TableRow coin="FunFair (FUN)" src={fun} ticker={"FUN"}/>
<TableRow coin="Civic (CVC)" src={cvc} ticker={"CVC"}/>
<TableRow coin="Dai (DAI)" src={dai} ticker={"DAI"}/>
<TableRow coin="Maker (MKR)" src={mkr} ticker={"MKR"}/>
<TableRow coin="Decentraland (MANA)" src={mana} ticker={"MANA"}/>
<TableRow coin="Komodo (KMD)" src={kmd} ticker={"KMD"}/>
<TableRow coin="Golem (GNT)" src={gnt} ticker={"GNT"}/>
<TableRow coin="Litecoin (LTC)" src={ltc} ticker={"LTC"}/>
<TableRow coin="Bancor (BNT)" src={bnt} ticker={"BNT"}/>
<TableRow coin="Bitcoin Gold (BTG)" src={btg} ticker={"BTG"}/>
<TableRow coin="Bitcoin SV (BSV)" src={bsv} ticker={"BSV"}/>
</tbody>
</CoinContext.Provider>
</table>}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment