Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Forked from GlitchicaL/App.js
Last active July 29, 2022 02:35
Show Gist options
  • Save gwmccubbin/b0f83a7b7a89fd65fdf9a1b3e42f3cbb to your computer and use it in GitHub Desktop.
Save gwmccubbin/b0f83a7b7a89fd65fdf9a1b3e42f3cbb 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