-
-
Save GlitchicaL/51c9166c5be2c10469cf0b38076396ca 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