-
-
Save gwmccubbin/b0f83a7b7a89fd65fdf9a1b3e42f3cbb to your computer and use it in GitHub Desktop.
Bootcamp App.js Starting Template
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
function App() { | |
return ( | |
<div> | |
{/* Navbar */} | |
<main className='exchange grid'> | |
<section className='exchange__section--left grid'> | |
{/* Markets */} | |
{/* Balance */} | |
{/* Order */} | |
</section> | |
<section className='exchange__section--right grid'> | |
{/* PriceChart */} | |
{/* Transactions */} | |
{/* Trades */} | |
{/* OrderBook */} | |
</section> | |
</main> | |
{/* Alert */} | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment