2022-11-29 16:45:00 +00:00
|
|
|
import Card from 'components/Card'
|
2022-12-06 09:20:22 +00:00
|
|
|
import Text from 'components/Text'
|
2022-11-22 09:14:12 +00:00
|
|
|
import TradeActionModule from 'components/Trade/TradeActionModule'
|
2022-09-02 11:51:00 +00:00
|
|
|
|
|
|
|
const Trade = () => {
|
2022-09-02 14:55:49 +00:00
|
|
|
return (
|
2022-12-06 09:20:22 +00:00
|
|
|
<div className='flex w-full flex-wrap'>
|
|
|
|
<div className='mb-4 flex flex-grow gap-4'>
|
|
|
|
<Card className='flex-1'>
|
|
|
|
<Text size='lg' uppercase={true}>
|
|
|
|
Tradingview Graph
|
|
|
|
</Text>
|
|
|
|
</Card>
|
2022-11-09 09:04:06 +00:00
|
|
|
<div className='flex flex-col gap-4'>
|
2022-11-29 16:45:00 +00:00
|
|
|
<Card>
|
2022-11-22 09:14:12 +00:00
|
|
|
<TradeActionModule />
|
2022-11-29 16:45:00 +00:00
|
|
|
</Card>
|
2022-12-06 09:20:22 +00:00
|
|
|
<Card>
|
|
|
|
<Text size='lg' uppercase={true}>
|
|
|
|
Orderbook module (optional)
|
|
|
|
</Text>
|
|
|
|
</Card>
|
2022-09-02 14:55:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-06 09:20:22 +00:00
|
|
|
<Card>
|
|
|
|
<Text size='lg' uppercase={true}>
|
|
|
|
Order history
|
|
|
|
</Text>
|
|
|
|
</Card>
|
2022-09-02 14:55:49 +00:00
|
|
|
</div>
|
2022-09-29 19:21:31 +00:00
|
|
|
)
|
|
|
|
}
|
2022-09-02 11:51:00 +00:00
|
|
|
|
2022-09-29 19:21:31 +00:00
|
|
|
export default Trade
|