You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
704 B
React
40 lines
704 B
React
3 years ago
|
import React, { Component } from "react";
|
||
|
import { Col, Row } from "antd";
|
||
3 years ago
|
import OrdersTempTable from "../charts/OrdersTempTable";
|
||
|
import MobileDeal from "../charts/MobileDeal";
|
||
3 years ago
|
import Orders from "../charts/Orders";
|
||
3 years ago
|
import ExchangeRate from "../charts/ExchangeRate";
|
||
3 years ago
|
|
||
|
class Dashboard extends Component {
|
||
3 years ago
|
constructor(props) {
|
||
|
super(props);
|
||
|
}
|
||
3 years ago
|
|
||
3 years ago
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
<div>
|
||
|
<Row>
|
||
|
<Col span={24}>
|
||
|
<Orders />
|
||
|
</Col>
|
||
3 years ago
|
|
||
3 years ago
|
<Col span={24}>
|
||
|
<ExchangeRate />
|
||
|
</Col>
|
||
|
<Col span={12}>
|
||
|
<OrdersTempTable />
|
||
|
</Col>
|
||
3 years ago
|
|
||
3 years ago
|
<Col span={12}>
|
||
|
<MobileDeal />
|
||
|
</Col>
|
||
|
</Row>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
3 years ago
|
}
|
||
|
|
||
|
export default Dashboard;
|