Created
May 12, 2022 19:32
-
-
Save gwmccubbin/2e7dd9bcfcaa3452f0bf021f1ccbf772 to your computer and use it in GitHub Desktop.
This file contains 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 Transactions = () => { | |
return ( | |
<div className="component exchange__transactions"> | |
<div> | |
<div className='component__header flex-between'> | |
<h2>My Orders</h2> | |
<div className='tabs'> | |
<button className='tab tab--active'>Orders</button> | |
<button className='tab'>Trades</button> | |
</div> | |
</div> | |
<table> | |
<thead> | |
<tr> | |
<th></th> | |
<th></th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td></td> | |
<td></td> | |
<td></td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
{/* <div> */} | |
{/* <div className='component__header flex-between'> */} | |
{/* <h2>My Transactions</h2> */} | |
{/* <div className='tabs'> */} | |
{/* <button className='tab tab--active'>Orders</button> */} | |
{/* <button className='tab'>Trades</button> */} | |
{/* </div> */} | |
{/* </div> */} | |
{/* <table> */} | |
{/* <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 Transactions; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment