Created
May 10, 2022 22:43
-
-
Save gwmccubbin/29e4efe7fd3a2c04448fc693221e2b03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const OrderBook = () => { | |
return ( | |
<div className="component exchange__orderbook"> | |
<div className='component__header flex-between'> | |
<h2>Order Book</h2> | |
</div> | |
<div className="flex"> | |
<table className='exchange__orderbook--sell'> | |
<caption>Selling</caption> | |
<thead> | |
<tr> | |
<th></th> | |
<th></th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td></td> | |
<td></td> | |
<td></td> | |
</tr> | |
</tbody> | |
</table> | |
<div className='divider'></div> | |
<table className='exchange__orderbook--buy'> | |
<caption>Buying</caption> | |
<thead> | |
<tr> | |
<th></th> | |
<th></th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td></td> | |
<td></td> | |
<td></td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
); | |
} | |
export default OrderBook; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment