Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 12, 2022 13:16
Show Gist options
  • Save gwmccubbin/109c294d76b21c67d19b926c33f6fefc to your computer and use it in GitHub Desktop.
Save gwmccubbin/109c294d76b21c67d19b926c33f6fefc to your computer and use it in GitHub Desktop.
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