Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 12, 2022 18:49
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/caaffa20fdb72ac861030a99dd42f074 to your computer and use it in GitHub Desktop.
Save gwmccubbin/caaffa20fdb72ac861030a99dd42f074 to your computer and use it in GitHub Desktop.
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