This file contains hidden or 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
const PriceChart = () => { | |
return ( | |
<div className="component exchange__chart"> | |
<div className='component__header flex-between'> | |
<div className='flex'> | |
<h2></h2> | |
<div className='flex'> |
This file contains hidden or 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
const OrderBook = () => { | |
return ( | |
<div className="component exchange__orderbook"> | |
<div className='component__header flex-between'> | |
<h2>Order Book</h2> | |
</div> | |
<div className="flex"> |
This file contains hidden or 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
const Order = () => { | |
return ( | |
<div className="component exchange__orders"> | |
<div className='component__header flex-between'> | |
<h2>New Order</h2> | |
<div className='tabs'> | |
<button className='tab tab--active'>Buy</button> | |
<button className='tab'>Sell</button> | |
</div> |
This file contains hidden or 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
const Balance = () => { | |
return ( | |
<div className='component exchange__transfers'> | |
<div className='component__header flex-between'> | |
<h2>Balance</h2> | |
<div className='tabs'> | |
<button className='tab tab--active'>Deposit</button> | |
<button className='tab'>Withdraw</button> | |
</div> |
This file contains hidden or 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
const Markets = () => { | |
return( | |
<div className='component exchange__markets'> | |
<div className='component__header'> | |
</div> | |
<hr /> | |
</div> | |
) |
This file contains hidden or 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
{ | |
"name": "bootcamp", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"@testing-library/jest-dom": "^5.16.4", | |
"@testing-library/react": "^13.1.1", | |
"@testing-library/user-event": "^13.5.0", | |
"dotenv": "^16.0.0", | |
"lodash": "^4.17.21", |
This file contains hidden or 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'> |
This file contains hidden or 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
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); | |
:root { | |
--clr-primary: #0D121D; | |
--clr-secondary: #121A29; | |
--clr-neutral: #767F92; | |
--clr-white: #F1F2F9; | |
--clr-blue: #2187D0; | |
--clr-red: #F45353; |
This file contains hidden or 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
ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl |