2022-09-02 11:51:00 +00:00
|
|
|
import React from "react";
|
2022-09-02 14:55:49 +00:00
|
|
|
import Container from "components/Container";
|
2022-09-02 11:51:00 +00:00
|
|
|
|
|
|
|
const Trade = () => {
|
2022-09-02 14:55:49 +00:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div className="flex gap-4 mb-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>
|
|
|
|
);
|
2022-09-02 11:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Trade;
|