Created
May 12, 2022 18:49
-
-
Save gwmccubbin/caaffa20fdb72ac861030a99dd42f074 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 Trades = () => { | |
return ( | |
<div className="component exchange__trades"> | |
<div className='component__header flex-between'> | |
<h2>Trades</h2> | |
</div> | |
<table> | |
<thead> | |
<tr> | |
<th></th> | |
<th></th> | |
<th></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td></td> | |
<td></td> | |
<td></td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
); | |
} | |
export default Trades; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment