27cdd1c954
* tidy: added eslintrc and prettierrc rules * tidy: formated the files via ‚yarn format‘ * import sort improvements * format script regex fix * replace eslint import severity to warning * remove staged file Co-authored-by: Gustavo Mauricio <gustavo.mauricio58@gmail.com>
22 lines
568 B
TypeScript
22 lines
568 B
TypeScript
import React from 'react'
|
|
|
|
import Container from 'components/Container'
|
|
|
|
const Trade = () => {
|
|
return (
|
|
<div>
|
|
<div className='mb-4 flex gap-4'>
|
|
<Container className='flex-1'>Graph/Tradingview Module</Container>
|
|
<div className='flex flex-col gap-4'>
|
|
<Container>Buy/Sell module</Container>
|
|
<Container>Orderbook module (optional)</Container>
|
|
</div>
|
|
<Container>Credit Account essential module</Container>
|
|
</div>
|
|
<Container>Trader order overview</Container>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Trade
|