Created
May 12, 2022 13:16
-
-
Save gwmccubbin/109c294d76b21c67d19b926c33f6fefc to your computer and use it in GitHub Desktop.
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
const PriceChart = () => { | |
return ( | |
<div className="component exchange__chart"> | |
<div className='component__header flex-between'> | |
<div className='flex'> | |
<h2></h2> | |
<div className='flex'> | |
<img src="" alt="Arrow down" /> | |
<span className='up'></span> | |
</div> | |
</div> | |
</div> | |
{/* Price chart goes here */} | |
</div> | |
); | |
} | |
export default PriceChart; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment