Skip to content

Instantly share code, notes, and snippets.

@GlitchicaL
Created April 4, 2022 18:04
Show Gist options
  • Save GlitchicaL/51c9166c5be2c10469cf0b38076396ca to your computer and use it in GitHub Desktop.
Save GlitchicaL/51c9166c5be2c10469cf0b38076396ca to your computer and use it in GitHub Desktop.
Bootcamp App.js Starting Template
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