Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 10, 2022 17:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwmccubbin/a98b770da7d7473bbb7267153a24bb5f to your computer and use it in GitHub Desktop.
Save gwmccubbin/a98b770da7d7473bbb7267153a24bb5f to your computer and use it in GitHub Desktop.
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>
</div>
<form>
<input type="text" id='amount' placeholder='0.0000' />
<input type="text" id='price' placeholder='0.0000'/>
<button className='button button--filled' type='submit'>
</button>
</form>
</div>
);
}
export default Order;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment