asb_cloud_front/src/pages/Analysis.jsx

30 lines
732 B
React
Raw Normal View History

import { AnalysisDepthToDay } from '../components/AnalysisDepthToDay'
import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
2021-07-21 15:36:08 +05:00
import { AnalysisOperationTime } from '../components/AnalysisOperationTime'
import { Row, Col } from 'antd'
2021-05-28 12:04:38 +05:00
export default function Analysis() {
return (
<>
2021-07-21 15:36:08 +05:00
<Row>
<Col span={10}>
<AnalysisDepthToDay />
</Col>
<Col span={2}></Col>
<Col span={10}>
<AnalysisDepthToInterval />
</Col>
</Row>
<Row>
<Col span={10}>
<AnalysisOperationTime />
</Col>
<Col span={2}></Col>
<Col span={10}>
<AnalysisDepthToDay />
</Col>
</Row>
</>
)
}