Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 12, 2022 19:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwmccubbin/2e7dd9bcfcaa3452f0bf021f1ccbf772 to your computer and use it in GitHub Desktop.
Save gwmccubbin/2e7dd9bcfcaa3452f0bf021f1ccbf772 to your computer and use it in GitHub Desktop.
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