Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 10, 2022 22:43
Show Gist options
  • Save gwmccubbin/29e4efe7fd3a2c04448fc693221e2b03 to your computer and use it in GitHub Desktop.
Save gwmccubbin/29e4efe7fd3a2c04448fc693221e2b03 to your computer and use it in GitHub Desktop.
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